Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
54 lines
1.3 KiB
<!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] |
|
], |
|
{ interactive:false,color:'#f00' } |
|
).addTo(map); |
|
|
|
// when the mouse hovers over the red route2, you cannot click through the blue route1 beneath |
|
}; |
|
|
|
</script> |
|
</body> |
|
</html>
|
|
|