map = {
const width = 400;
const height = 400;
const svg = d3.select(DOM.svg(width, height))
const projection = d3.geoEqualEarth();
projection.fitExtent([[40,40],[width,height]],bounds)
svg.selectAll('circle')
.data([data])
.enter()
.append('circle')
.attr('cx', projection(data)[0])
.attr('cy', projection(data)[1])
.attr('r',5)
.attr('fill','red');
return svg.node();
}