Sha256: adce612243845161233497089d7609a3d62aee196726b455d0b96ff567301ee9

Contents?: true

Size: 1.75 KB

Versions: 6

Compression:

Stored size: 1.75 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>
		<p>
			On the left Map dragging and worldCopyJump are enabled during initialisation.<br>
			On the right Map worldCopyJump is enabled. Dragging is enabled by clicking the button.
		</p>
		<button id="foo">
			Click to enable dragging on the right map, then dragging around and watch copying
		</button><br>
		<div id="map1" style="height: 300px;width: 400px; float:left;"></div>
		<div id="map2" style="height: 300px;width: 400px; float:left; margin-left: 10px;"></div>
		<div style="clear:both"></div>


		<script type="text/javascript">
			function addLayerAndMarker(map) {
				var layer = new L.TileLayer('http://{s}.tile.cloudmade.com/d4fc77ea4a63471cab2423e66626cbb6/997/256/{z}/{x}/{y}.png', {
					maxZoom : 18
				}).addTo(map);

				var marker = L.marker([50.5, 30.5]).addTo(map);

			}
			var map1 = new L.Map('map1', {
				center : new L.LatLng(45.50144, -122.67599),
				zoom : 0,
				dragging : true,
				worldCopyJump : true
			});
			var map2 = new L.Map('map2', {
				center : new L.LatLng(45.50144, -122.67599),
				zoom : 0,
				dragging : false,
				worldCopyJump : true
			});
			$("#foo").click(function() {
              map2.dragging.enable();
            });



			addLayerAndMarker(map1);
			addLayerAndMarker(map2);

		</script>
	</body>
</html>

Version data entries

6 entries across 6 versions & 1 rubygems

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