map = svg`<svg viewBox="0 0 ${width} ${height}">
${(tile()).map(([x, y, z], i, {translate: [tx, ty], scale: k}) => svg`<image xlink:href="${url(x,y,z)}" x="${(x + tx) * k}" y="${(y + ty) * k}" width="${k}" height="${k}">
`)}
<path fill="none" stroke="#fff8" d="${path(boundaries)}"/>
${circles}
</svg>`