{
const svg = d3.select(DOM.svg(width, height));
svg.append("path")
.datum(statesOuter)
.attr("class", "outer")
.attr("d", path)
.style("stroke", "#000")
.style("stroke-width", .1)
.style("fill", "aliceblue")
svg.selectAll(".point")
.data([point_geojson])
.enter().append("path")
.attr("d", path)
.style("stroke", "#000")
.style("stroke-width", .1)
return svg.node();
}