aboutsummaryrefslogtreecommitdiffstats
path: root/extlib/leaflet/debug/map/wms.html
diff options
context:
space:
mode:
Diffstat (limited to 'extlib/leaflet/debug/map/wms.html')
-rw-r--r--extlib/leaflet/debug/map/wms.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/extlib/leaflet/debug/map/wms.html b/extlib/leaflet/debug/map/wms.html
new file mode 100644
index 00000000..08694726
--- /dev/null
+++ b/extlib/leaflet/debug/map/wms.html
@@ -0,0 +1,37 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Leaflet debug page</title>
+
+ <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" />
+
+ <script src="../leaflet-include.js"></script>
+</head>
+<body>
+
+ <div id="map" style="width: 800px; height: 600px; border: 1px solid #ccc"></div>
+
+ <script type="text/javascript">
+ var map = new L.Map('map');
+
+ var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/BC9A493B41014CAABB98F0471D759707/997/256/{z}/{x}/{y}.png',
+ cloudmadeAttribution = 'Map data &copy; 2011 OpenStreetMap contributors, Imagery &copy; 2011 CloudMade',
+ cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18, attribution: cloudmadeAttribution});
+
+ var nexrad = new L.TileLayer.WMS("http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r.cgi", {
+ layers: 'nexrad-n0r-900913',
+ format: 'image/png',
+ transparent: true,
+ attribution: "Weather data &copy; 2011 IEM Nexrad",
+ opacity: 0.4
+ });
+
+ var bounds = new L.LatLngBounds(new L.LatLng(32, -126), new L.LatLng(50, -64));
+
+ map.addLayer(cloudmade).addLayer(nexrad).fitBounds(bounds);
+ </script>
+</body>
+</html> \ No newline at end of file