map = () => {
const delay0 = 300;
const svg = d3
.create("svg")
.attr("viewBox", [0, 0, width, height])
.style("background", "#333");
const path = d3.geoPath(projection);
const color = d3.scaleOrdinal(d3.shuffle(d3.schemeSet1));
const gGraph = svg
.append("g")
.style("stroke", "white")
.style("stroke-width", 0.125);
for (const [type, subset] of d3.group(
edges,
(d) => !!d.highway.match("residential")
)) {
gGraph
.append("path")
.datum({
type: "MultiLineString",
coordinates: subset.map(({ u, v }) => [
coordinates(nodesIndex.get(u)),
coordinates(nodesIndex.get(v))
])
})
.attr("d", path)
.style("stroke-dasharray", type ? [1, 3] : []);
}
svg
.append("g")
.attr("opacity", 0.7)
.selectAll("path")
.data(d3.range(nodes.length))
.join("path")
.attr("d", (i) =>
tree.predecessor[i] === -1
? null
: path({
type: "LineString",
coordinates: [
coordinates(nodes[tree.predecessor[i]]),
coordinates(nodes[i])
]
})
)
.attr("stroke", (i) => color(tree.origin[i]))
.attr("opacity", 0)
.attr("stroke-dasharray", [0, 1000])
.transition()
.delay((i) => delay0 + tree.cost[i])
.attr("opacity", 1)
.attr("stroke-dasharray", (i) =>
tree.predecessor[i] === -1
? []
: [(tree.cost[i] - tree.cost[tree.predecessor[i]]) / 10, 1000]
);
const gNodes = svg.append("g");
const sorted = d3.sort(d3.range(nodes.length), (i) => tree.cost[i]);
path.pointRadius(2);
gNodes
.selectAll("path")
.data(d3.range(nodes.length))
.join("path")
.attr("d", (i) =>
path({
type: "Point",
coordinates: coordinates(nodes[i])
})
)
.attr("fill", (i) => color(tree.origin[i]))
.attr("opacity", 0)
.transition()
.delay((i) => delay0 + tree.cost[i])
.duration(1000)
.attr("opacity", 1);
path.pointRadius(4);
svg
.append("g")
.selectAll("path")
.data(origins)
.join("path")
.attr("d", (i) =>
path({
type: "Point",
coordinates: coordinates(nodes[i])
})
)
.attr("stroke", (i) => color(tree.origin[i]))
.attr("fill", "white");
svg
.append("g")
.attr("transform", "translate(10, 20)")
.append("text")
.text("Paris, TX Voronoi")
.style("fill", "white")
.style("font-family", "sans-serif")
.style("font-size", "18px");
return svg.node();
}