{
let svg = viz.create({
projection: d3.geoAzimuthalEquidistant().rotate([0, -90]).clipAngle(150),
width: 700
});
svg.outline();
svg.path({ datum: world, fill: "#316585", fillOpacity: 0.3 });
svg.graticule({ stroke: "white", step: 30 });
return svg.render();
}