mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-07-21 23:26:12 +00:00

Signed-off-by: Jon Koops <jonkoops@gmail.com> Co-authored-by: Florian Bischof <design.falke@gmail.com>
51 lines
1.3 KiB
HTML
51 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Leaflet debug page - Grid</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0" />
|
|
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
|
<link rel="stylesheet" href="../css/screen.css" />
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"leaflet": "../../dist/leaflet-src.js"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
<script type="module">
|
|
import {GridLayer, Map} from 'leaflet';
|
|
|
|
const grid = new GridLayer({
|
|
attribution: 'Grid Layer'
|
|
});
|
|
|
|
grid.createTile = function (coords, done) {
|
|
const tile = document.createElement('div');
|
|
|
|
tile.innerHTML = [coords.x, coords.y, coords.z].join(', ');
|
|
tile.style.outline = '1px solid red';
|
|
tile.style.background = 'white';
|
|
|
|
// test async
|
|
setTimeout(() => done(null, tile), 500 + Math.random() * 500);
|
|
|
|
return tile;
|
|
};
|
|
|
|
grid.on('loading', () => console.log('loading'));
|
|
grid.on('load', () => console.log('load'));
|
|
grid.on('tileunload', (tile) => {
|
|
console.log('tileunload', `${tile.coords.x}, ${tile.coords.y}, ${tile.coords.z}`);
|
|
});
|
|
|
|
new Map('map')
|
|
.setView([50.5, 30.51], 10)
|
|
.addLayer(grid);
|
|
</script>
|
|
</body>
|
|
</html>
|