map = {
const svg = d3
.create("svg")
.attr("viewBox", [0, 0, width, height])
.style("width", "100%")
.style("height", "auto")
.style("background", "white");
const g = svg.append('g')
g.append("path")
.datum(route_paris)
.attr("fill", "none")
.attr("stroke", "green")
.attr("stroke-width", 0.5)
.attr("d", path);
g.append("path")
.datum(departements)
.attr("fill", "none")
.attr("stroke", "#525861")
.attr("stroke-width", 1.2)
.attr("d", path);
g.append("path")
.datum(arrondissements)
.attr("fill", "none")
.attr("stroke", "#525861")
.attr("stroke-width", 0.9)
.attr("d", path);
return svg.node()
}