Sha256: d8367325dd23428d9e2c64a674fb3b2ba89031cf8a75bb975fded305e60c3192

Contents?: true

Size: 1.34 KB

Versions: 6

Compression:

Stored size: 1.34 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;
	var myLayerGroup = new L.LayerGroup();

	initmap();

	function initmap() {
	  // set up the map
	  map = new L.Map('map');

	  // create the tile layer with correct attribution
	  var osmUrl = 'http://a.tile.openstreetmap.org/{z}/{x}/{y}.png';
	  var osm = new L.TileLayer(osmUrl, { minZoom: 1, maxZoom: 17 });
	  map.addLayer(osm);
	  map.fitBounds(new L.LatLngBounds([51,7],[51,7]));

	  var route = L.polyline([
	    [51, 7.000],
	    [51.002, 7.004],
	    [51.004, 7.006]
	  ]).addTo(map).on('click',function(e){console.log('bottom')})

	  var route2 = L.polyline([
	    [51, 7.000],
	    [51.002, 7.004]
	  ],
	  { clickable:false,color:'#f00' }
	  ).addTo(map);

	  // when the mouse hovers over the red route2, you cannot click through the blue route1 beneath
	};

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

Version data entries

6 entries across 6 versions & 1 rubygems

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