Sha256: d4a7babe453d5823c65270d39465939a3a00058ddeec4db686492b4d1943696c

Contents?: true

Size: 1.25 KB

Versions: 6

Compression:

Stored size: 1.25 KB

Contents

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

	<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">

	<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>
	<script type='text/javascript' src='http://code.jquery.com/jquery-1.8.0.js'></script>
</head>
<body>

	<div id="map"></div>
	<button id="foo">Click to add layer, then zoom out or in</button>

	<script type="text/javascript">

	var map = new L.Map('map', { center: new L.LatLng(45.50144, -122.67599), zoom: 4 });

	var demoUrl='http://server.arcgisonline.com/ArcGIS/rest/services/Demographics/USA_Average_Household_Size/MapServer/tile/{z}/{y}/{x}';
	var demoMap = new L.TileLayer(demoUrl, { maxZoom: 19, attribution: 'Tiles: &copy; Esri' });

	map.addLayer(demoMap);

	$('#foo').click(function() {
		var topoUrl='http://server.arcgisonline.com/ArcGIS/rest/services/USA_Topo_Maps/MapServer/tile/{z}/{y}/{x}';
	var topoMap = new L.TileLayer(topoUrl, { maxZoom: 19, attribution: 'Tiles: &copy; Esri' });
	map.addLayer(topoMap);
	topoMap.bringToBack();
	});
	</script>
</body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

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