function ChoroplethZoomable(data, {
id = d => d.id,
value = () => undefined,
title,
format,
scale = d3.scaleSequential,
domain,
range = d3.interpolateBlues,
width = 640,
height,
projection,
features,
featureId = d => d.id,
borders,
outline = projection && projection.rotate ? {type: "Sphere"} : null,
unknown = "#ccc",
fill = "white",
stroke = "white",
strokeLinecap = "round",
strokeLinejoin = "round",
strokeWidth,
strokeOpacity,
} = {}) {
const N = d3.map(data, id);
const V = d3.map(data, value).map(d => d == null ? NaN : +d);
const Im = new d3.InternMap(N.map((id, i) => [id, i]));
const If = d3.map(features.features, featureId);
if (domain === undefined) domain = d3.extent(V);
const color = scale(domain, range);
if (unknown !== undefined) color.unknown(unknown);
if (title === undefined) {
format = color.tickFormat(100, format);
title = (f, i) => `${f.properties.name}\n${format(V[i])}`;
} else if (title !== null) {
const T = title;
const O = d3.map(data, d => d);
title = (f, i) => T(f, O[i]);
}
if (height === undefined) {
if (outline === undefined) {
height = 400;
} else {
const [[x0, y0], [x1, y1]] = d3.geoPath(projection.fitWidth(width, outline)).bounds(outline);
const dy = Math.ceil(y1 - y0), l = Math.min(Math.ceil(x1 - x0), dy);
projection.scale(projection.scale() * (l - 1) / l).precision(0.2);
height = dy;
}
}
const path = d3.geoPath(projection);
const zoom = d3
.zoom()
.scaleExtent([1, 8])
.translateExtent([[0, 0], [width, height]])
.on("zoom", zoomed);
const svg = d3.create("svg")
.attr("width", width)
.attr("height", height)
.attr("viewBox", [0, 0, width, height])
.attr("style", "max-width: 100%; height: auto; height: intrinsic;")
.on("click", reset);
const g = svg.append("g")
if (outline != null) g.append("path")
.attr("fill", fill)
.attr("stroke", "currentColor")
.attr("d", path(outline));
g.selectAll("path")
.data(features.features)
.join("path")
.attr("fill", (d, i) => color(V[Im.get(If[i])]))
.attr("d", path)
.attr("class", "countries")
.attr('vector-effect', 'non-scaling-stroke')
.append("title")
.text((d, i) => title(d, Im.get(If[i])));
if (borders != null) g.append("path")
.attr("pointer-events", "none")
.attr("fill", "none")
.attr("stroke", stroke)
.attr("stroke-linecap", strokeLinecap)
.attr("stroke-linejoin", strokeLinejoin)
.attr("stroke-width", strokeWidth)
.attr("stroke-opacity", strokeOpacity)
.attr("d", path(borders));
svg.call(zoom);
let tooltipData;
const tooltip = svg.append("g");
g.selectAll(".countries").on("touchmove mousemove", function(event, d) {
const transform = d3.zoomTransform(svg.node());
d3.select(this)
.attr("stroke", "#333")
.attr("stroke-width", "1px")
.raise();
tooltip
.attr(
"transform",
`translate(${transform
.apply(d3.pointer(event, this))
.map(e => e - 60)})`
)
.call(
callout,
`id: ${d.id}\nCountry: ${d.properties.name}`
);
});
g.selectAll(".countries").on("touchend mouseleave", function() {
d3.select(this)
.attr("stroke-width", "null")
.attr("stroke", "none")
.lower();
tooltip.call(callout, null);
});
function reset() {
svg
.transition()
.duration(750)
.call(
zoom.transform,
d3.zoomIdentity,
d3.zoomTransform(svg.node()).invert([width / 2, height / 2])
);
}
function zoomed(event) {
const { transform } = event;
g.attr("transform", transform);
g.attr("stroke-width", 1 / transform.k);
}
function updateData(newData) {
tooltipData = newData;
}
updateData(data)
return Object.assign(svg.node(), {
scales: {color},
reset,
callout,
zoomed,
updateData,
});
}