createMap = function(svg) {
const data = [144.960930,-37.797831]
const projection = d3.geoEqualEarth();
projection.fitExtent([[40,40],[width,height]],bounds)
svg
.append('circle')
.attr('cx', projection(data)[0])
.attr('cy', projection(data)[1])
.attr('r',5)
.attr('fill','red');
}