map = svg`<svg viewBox="0 0 975 610">
<g fill="none" stroke="#000" stroke-linejoin="round" stroke-linecap="round">
<path stroke="#aaa" stroke-width="0.1" d="${path(counties)}"></path>
<path stroke-width="0.5" d="${path(states)}"></path>
<path d="${path(nation)}"></path>
</g>
<g>
${data
.map(
(d, i) => `<circle
cx=${getLat(d.location)}
cy=${getLng(d.location)}
r=${1.5}
fill="#cc0000"
data-idx=${i}
/>`
)
.join("\n")}
</g>
</svg>`