Leaflet/debug/vector/vector.html

38 lines
1.1 KiB
HTML
Raw Normal View History

2011-02-26 01:01:29 +08:00
<!DOCTYPE html>
<html>
<head>
<title>Leaflet debug page</title>
2011-04-08 19:53:34 +08:00
<link rel="stylesheet" href="../../dist/leaflet.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="../../dist/leaflet.ie.css" /><![endif]-->
<link rel="stylesheet" href="../css/screen.css" />
2011-06-02 22:07:56 +08:00
<script src="../leaflet-include.js"></script>
2011-02-26 01:01:29 +08:00
</head>
<body>
<div id="map" style="width: 800px; height: 600px; border: 1px solid #ccc"></div>
2011-02-26 22:34:51 +08:00
<script src="route.js"></script>
<script>
2011-02-26 01:01:29 +08:00
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png',
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18});
2011-05-15 00:31:36 +08:00
for (var i = 0, latlngs = [], len = route.length; i < len; i++) {
latlngs.push(new L.LatLng(route[i][0], route[i][1]));
}
var path = new L.Polyline(latlngs);
2011-02-26 22:34:51 +08:00
2011-05-15 00:31:36 +08:00
var map = new L.Map('map', {layers: [cloudmade]});
2011-02-26 22:34:51 +08:00
2011-05-15 00:31:36 +08:00
map.fitBounds(new L.LatLngBounds(latlngs));
map.addLayer(new L.Marker(latlngs[0]));
map.addLayer(new L.Marker(latlngs[len - 1]));
2011-06-21 02:32:59 +08:00
map.addLayer(path);
2011-05-15 00:31:36 +08:00
path.bindPopup("Hello world");
2011-02-26 01:01:29 +08:00
</script>
</body>
</html>