Published
Edited
Sep 10, 2020
1 fork
10 stars
Insert cell
Insert cell
Insert cell
// Code adapted from https://observablehq.com/@d3/clipped-map-tiles
map = svg`<svg viewBox="0,0,${width},${height}" width=${width} height=${height}>
${tiles.map(
([x, y, z], i, { translate: [tx, ty], scale: k }) => svg`
<image xlink:href="${url(x, y, z)}" x="${Math.round(
(x + tx) * k
)}" y="${Math.round((y + ty) * k)}" width="${k}" height="${k}">
`
)}
</svg>`
Insert cell
Insert cell
{
let svg = d3.select(DOM.svg(width, height));

svg
.selectAll('image')
.data(tiles)
.join('image')
.attr('xlink:href', d => url(d[0], d[1], d[2]))
.attr('x', d => Math.round((d[0] + tiles.translate[0]) * tiles.scale))
.attr('y', d => Math.round((d[1] + tiles.translate[1]) * tiles.scale))
.attr('width', tiles.scale)
.attr('height', tiles.scale);

return svg.node();
}
Insert cell
Insert cell
tiles.map(function([x, y, z], i, { translate: [tx, ty], scale: k }) {
return svg`<image xlink:href="${url(
x,
y,
z
)}" x="${Math.round((x + tx) * k)}" y="${Math.round((y + ty) * k)}" width="${k}" height="${k}">
`;
})
Insert cell
Insert cell
tiles = tile()
Insert cell
tile = d3
.tile()
.size([width, height])
.scale(projection.scale() * 2 * Math.PI)
.translate(projection([0, 0]))
Insert cell
projection = d3
.geoMercator()
.center(gb_centre)
.scale(20000)
.translate([width / 2, height / 2])
Insert cell
// Tiled historic maps from the National Library of Scotland https://maps.nls.uk/projects/api/
url = (x, y, z) => `https://geo.nls.uk/maps/api/nls/${z}/${x}/${y}.jpg`
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more