Sha256: 90a42dd3d42e570ccb57de47b252d215d554d228612b71bf903bf385aa2441ca

Contents?: true

Size: 1.29 KB

Versions: 6

Compression:

Stored size: 1.29 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>

	<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' });

	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);

	map.addLayer(demoMap);

	map.on('dragstart', function () {
		console.log('dragstart');
		setTimeout(function () {
			console.log('removing');
			map.removeLayer(demoMap);
		}, 400);
	});
	</script>
</body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

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