{
const svg = d3
.create("svg")
.attr("viewBox", [0, 0, width, height])
.style("width", "100%")
.style("height", "auto");
svg
.append("path")
.datum(countries)
.attr("fill", "#eeeeee")
.attr("stroke", "white")
.attr("stroke-width", 0.4)
.attr("d", path);
svg
.append("path")
.data(me)
.attr("fill", "#ed87c8")
.attr("stroke", "white")
.attr("stroke-width", 0.4)
.attr("d", path);
svg
.append("g")
.attr("id", "map")
.selectAll("path")
.data(neighborhood)
.join("path")
.attr("fill", "#f0d175")
.attr("d", path);
return svg.node();
}