function makeMap(zoomShape) {
let ctx = DOM.context2d(mapWidth, mapHeight);
ctx.canvas.width = mapWidth;
ctx.canvas.height = mapHeight;
ctx.canvas.style.width = mapWidth + "px";
ctx.canvas.style.height = mapHeight + "px";
let projection = d3
.geoAlbersUsa()
.fitSize([mapWidth - 50, mapHeight - 50], zoomShape);
let path = d3.geoPath(projection).context(ctx);
ctx.fillStyle = "white";
ctx.fillRect(0, 0, mapWidth, mapHeight);
let r = 1;
ctx.strokeStyle = "#111";
ctx.lineWidth = 2;
ctx.globalAlpha = 1;
ctx.beginPath();
path(zoomShape);
ctx.stroke();
shapesWithData.forEach(d => {
ctx.strokeStyle = "#ddd";
ctx.lineWidth = .5;
ctx.globalAlpha = 0;
if (d.nyt) ctx.globalAlpha = 1;
if (showCountyLines) {
ctx.beginPath();
path(d);
ctx.stroke();
}
const fillColor = d3.color(colorScale(colorScale.domain()[1]));
fillColor.opacity = 0.25;
ctx.fillStyle = fillColor.toString();
if (d.points && d.points.features) {
d.points.features.forEach(feature => {
const {
geometry: {
coordinates: [x, y]
}
} = feature;
let c = projection([x, y]);
if (!c) return;
ctx.fillRect(c[0], c[1], r, r);
});
}
});
ctx.fillStyle = "#111";
ctx.beginPath();
ctx.font = '24px Helvetica';
ctx.fillText(normalDate(date), mapWidth / 2 - 40, 35);
ctx.fill();
return ctx.canvas;
}