Leaflet/debug/map/grid.html

49 lines
1.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title>Leaflet debug page</title>
<link rel="stylesheet" href="../../dist/leaflet.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../css/screen.css" />
<script type="text/javascript" src="../../build/deps.js"></script>
<script src="../leaflet-include.js"></script>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
var grid = L.gridLayer({
attribution: 'Grid Layer'
});
2013-11-26 01:13:30 +08:00
grid.createTile = function (coords, done) {
var tile = document.createElement('div');
2013-11-27 00:55:10 +08:00
tile.innerHTML = [coords.x, coords.y, coords.z].join(', ');
tile.style.outline = '1px solid red';
2013-11-26 01:13:30 +08:00
tile.style.background = 'white';
// test async
setTimeout(function () {
2013-11-26 23:16:18 +08:00
done(null, tile);
2014-03-22 13:29:10 +08:00
}, 500 + Math.random() * 500);
2013-11-26 01:13:30 +08:00
return tile;
};
2014-10-23 18:23:37 +08:00
grid.on('loading', function() { console.log('loading'); });
grid.on('load', function() { console.log('load'); });
var map = L.map('map')
.setView([50.5, 30.51], 10)
.addLayer(grid);
</script>
</body>
</html>