{
let svg = viz.create({
width: 500,
domain: world
});
svg.path({ datum: world, fill: "#CCC" });
const pos = [250, 120];
svg
.append("circle")
.attr("cx", pos[0])
.attr("cy", pos[1])
.attr("r", 5)
.attr("fill", "#616161")
.attr("stroke", "none");
svg.text({
pos: pos,
text: `"In that Empire, the Art of Cartography
attained such Perfection that the map
of a single Province occupied the entirety
of a City, and the map of the Empire, the
entirety of a Province"
(Jorge Luis Borges)`,
fontSize: 13,
fill: "#38896F",
dominantBaseline: dominantBaseline,
textAnchor: textAnchor,
dx: dx,
dy: dy
});
return svg.render();
}