aboutsummaryrefslogtreecommitdiffstats
path: root/extlib/leaflet/debug/vector/vector-mobile.html
diff options
context:
space:
mode:
Diffstat (limited to 'extlib/leaflet/debug/vector/vector-mobile.html')
-rw-r--r--extlib/leaflet/debug/vector/vector-mobile.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/extlib/leaflet/debug/vector/vector-mobile.html b/extlib/leaflet/debug/vector/vector-mobile.html
new file mode 100644
index 00000000..519de0c6
--- /dev/null
+++ b/extlib/leaflet/debug/vector/vector-mobile.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Leaflet debug page</title>
+
+ <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
+
+ <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/mobile.css" />
+
+ <script src="../leaflet-include.js"></script>
+</head>
+<body>
+ <div id="map"></div>
+
+ <script src="route.js"></script>
+ <script>
+ var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png',
+ cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18});
+
+ 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, {smoothFactor: 1});
+
+ var map = new L.Map('map', {layers: [cloudmade]});
+
+ map.fitBounds(new L.LatLngBounds(latlngs));
+
+ map.addLayer(new L.Marker(latlngs[0]));
+ map.addLayer(new L.Marker(latlngs[latlngs.length - 1]));
+
+ map.addLayer(path);
+ </script>
+</body>
+</html> \ No newline at end of file