{
let svg = viz.create({
projection: viz.proj.geoNaturalEarth1().rotate([longitude, 0]),
width: 600
});
svg.plot({ type: "outline", fill: "#38896F" });
svg.plot({ type: "graticule", step: 60, stroke: "white" });
svg.plot({ type: "path", datum: world, fill: "white", fillOpacity: 0.3 });
return svg.render();
}