svgMap = {
const path = d3.geoPath(projection);
const svg = d3.select(DOM.svg(width, height))
.style("width", "100%")
.style("height", "auto");
svg.append("path")
.datum(land)
.attr("fill", "#ccc")
.style("stroke", "#555")
.attr("d", path);
svg.append("path")
.style("fill","none")
.style("stroke","#000")
.attr("d", projection.getCompositionBorders());
return svg.node();
}