2012-12-12 02:18:54 +08:00
|
|
|
<!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 src="../leaflet-include.js"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="map"></div>
|
|
|
|
|
2017-02-04 23:17:51 +08:00
|
|
|
<script>
|
2012-12-12 02:18:54 +08:00
|
|
|
|
|
|
|
var map = L.map('map', {
|
|
|
|
crs: L.CRS.Simple
|
|
|
|
}).setView([0, 0], 0);
|
|
|
|
|
|
|
|
L.polygon([
|
|
|
|
[-200, -50],
|
|
|
|
[-40, 250],
|
|
|
|
[200, 100]
|
|
|
|
]).addTo(map);
|
|
|
|
|
|
|
|
|
|
|
|
L.marker([-200, -200]).addTo(map);
|
|
|
|
L.marker([200, -200]).addTo(map);
|
|
|
|
L.marker([200, 200]).addTo(map);
|
|
|
|
L.marker([-200, 200]).addTo(map);
|
|
|
|
|
|
|
|
L.marker([0, 0]).addTo(map);
|
|
|
|
|
|
|
|
L.imageOverlay('http://leafletjs.com/docs/images/logo.png', [[0, 0], [73, 220]]).addTo(map);
|
|
|
|
|
2013-11-27 00:55:10 +08:00
|
|
|
var grid = L.gridLayer({
|
|
|
|
attribution: 'Grid Layer'
|
|
|
|
});
|
|
|
|
|
|
|
|
grid.createTile = function (coords) {
|
|
|
|
var tile = document.createElement('div');
|
|
|
|
tile.innerHTML = [coords.x, coords.y, coords.z].join(', ');
|
|
|
|
tile.style.outline = '1px solid red';
|
|
|
|
tile.style.background = 'white';
|
|
|
|
return tile;
|
|
|
|
};
|
|
|
|
|
|
|
|
map.addLayer(grid);
|
2012-12-12 02:18:54 +08:00
|
|
|
|
2014-01-02 21:23:28 +08:00
|
|
|
L.circle([0, 0], 100, {color: 'red'}).addTo(map);
|
|
|
|
|
2012-12-12 02:18:54 +08:00
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|