map = {
const svg = d3.create("svg").attr("width", width).attr("height", height);
svg
.append("rect")
.attr("width", width)
.attr("height", height)
.attr("fill", bgColor);
svg
.append("path")
.datum({ type: "Sphere" })
.attr("d", path)
.attr("fill", earthColor);
svg
.append("g")
.selectAll(".rivers")
.data(rivers.features)
.enter()
.append("path")
.attr("d", path)
.attr("stroke", (d) => d3.interpolateBlues(srScale(d.properties.scalerank)))
.attr(
"stroke-width",
(d) =>
maxRiverThickness * srScale(d.properties.scalerank) + minRiverThickness
)
.attr("fill", "none")
.attr("class", "rivers");
return svg.node();
}