{
const svg = DOM.svg(960,500);
const projection = d3.geoNaturalEarth1();
const pathGenerator = d3.geoPath().projection(projection);
const map = d3.select(svg)
map.append('path')
.attr('fill','#4242e4')
.attr('d',pathGenerator({type:"Sphere"}));
map.selectAll('path').data(countries.features)
.enter().append('path')
.attr('d',d=>pathGenerator(d))
.attr('fill','lightgreen')
.attr('stroke','black')
.attr('stroke-opacity','0.4')
return svg
}