Sha256: da71ed2fe17c1afa4de57c6cc18c87ea3c4297489206cd796bc15c1faa116caf

Contents?: true

Size: 1.4 KB

Versions: 6

Compression:

Stored size: 1.4 KB

Contents

<!DOCTYPE html>
<html>
<head>
	<title>Leaflet debug page</title>

	<link rel="stylesheet" href="../../dist/leaflet.css" />

	<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" 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/d4fc77ea4a63471cab2423e66626cbb6/{styleId}/256/{z}/{x}/{y}.png',
			cloudmadeAttribution = 'Map data &copy; 2011 OpenStreetMap contributors, Imagery &copy; 2011 CloudMade',
			cloudmade = new L.TileLayer(cloudmadeUrl, {styleId: 997, attribution: cloudmadeAttribution}),
			cloudmade2 = new L.TileLayer(cloudmadeUrl, {styleId: 998, 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);

		L.control.layers({"CM": cloudmade, "CM2": cloudmade2}, {"NexRad": nexrad}).addTo(map);
	</script>
</body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
leaflet-js-0.8.dev2 lib/leaflet/debug/map/wms.html
leaflet-js-0.7.0.4 lib/leaflet/debug/map/wms.html
leaflet-js-0.7.0.3 lib/leaflet/debug/map/wms.html
leaflet-js-0.7.0.2 lib/leaflet/debug/map/wms.html
leaflet-js-0.7.0.1 lib/leaflet/debug/map/wms.html
leaflet-js-0.7.0 lib/leaflet/debug/map/wms.html