{
let svg = viz.create({ domain: world });
svg.path({ datum: world, fill: "#38896F", fillOpacity: 0.5 });
svg
.append("circle")
.attr("cx", svg.width / 2)
.attr("cy", svg.height / 2)
.attr("r", 10)
.attr("fill", "none")
.attr("stroke", "#38896F")
.attr("stroke-width", 5);
return svg.render();
}