map = svg`<svg viewBox="0 0 ${width} ${height}" style="width:100%;height:auto;">${tile().map(([x, y, z]) => {
const buildings = svg`<path>`;
const water = svg`<path fill="none" stroke="cyan" stroke-width="0.5">`;
fetch(`https://tile.nextzen.org/tilezen/vector/v1/512/all/${z}/${x}/${y}.json?api_key=${key}`)
.then(response => response.json())
.then(data => {
buildings.setAttribute("d", path(data.buildings));
water.setAttribute("d", path({
type: "FeatureCollection",
features: data.water.features.filter(d => d.properties.boundary)
}));
});
return svg`${buildings}${water}`;
})}</svg>`