{
const height = 650;
const prj = d3.geoEquirectangular().fitWidth(width, LAU2);
const svg = d3
.create("svg")
.attr("viewBox", [0, 0, width, height])
.attr("width", width)
.style("max-width", "100%")
.attr("background-color", "white");
svg
.append("g")
.selectAll("path")
.data(LAU2.features)
.join("path")
.style("fill", "none")
.style("stroke", "black")
.style("stroke-width", 0.1)
.attr("d", d3.geoPath(prj));
return svg.node();
}