{
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height);
svg.selectAll(".county")
.data(countyGeo.features)
.join("path")
.attr("class", "county")
.attr("d", path)
.attr("fill", "#f5f5f5")
.attr("stroke", "#c0c0c0");
svg.selectAll(".outline")
.data(usGeo.features)
.join("path")
.attr("class", "outline")
.attr("d", path)
.attr("fill", "none")
.attr("stroke", "black");
svg.selectAll(".clipped")
.data(countyGeoClipped.features)
.join("path")
.attr("class", "clipped")
.attr("d", path)
.attr("fill", "lightblue")
.attr("stroke", "steelblue");
return svg.node();
}