File: popupcontextmenuclicks.html

package info (click to toggle)
leaflet 0.7.3~dfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,752 kB
  • ctags: 462
  • sloc: makefile: 16; sh: 13
file content (59 lines) | stat: -rw-r--r-- 1,508 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
	<title>Leaflet debug page</title>

	<link rel="stylesheet" href="../../dist/leaflet.css" />

	<meta name="viewport" content="width=device-width, initial-scale=1.0">

	<link rel="stylesheet" href="../css/screen.css" />

	<script type="text/javascript" src="../../build/deps.js"></script>
	<script src="../leaflet-include.js"></script>
</head>
<body>

	<div id="map"></div>
	<button id="populate">Populate with 10 markers</button>

	<script type="text/javascript">

var map = L.map('map').setView([36.9, -95.4], 5);
map.on('contextmenu', function (e) {
    alert('The map has been right-clicked');
});
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
    attribution: 'Map data &copy; 2011 OpenStreetMap contributors, Imagery &copy; 2011 CloudMade',
    key: 'BC9A493B41014CAABB98F0471D759707'
}).addTo(map);



var exampleGeoJSON = {
    type: 'Polygon',
    coordinates: [
        [
            [-90.0, 35.0],
            [-90.0, 45.0],
            [-100.0, 45.0],
            [-100.0, 35.0]
        ]
    ]
};

var geoJsonLayer = L.geoJson(exampleGeoJSON, {
    onEachFeature: function (feature, layer) {
        layer.on('contextmenu', function (e) {
            alert('The GeoJSON layer has been clicked');
        });
    }
}).addTo(map);

var marker = L.marker([36, -95]).addTo(map);
marker.bindPopup('Right-click me <br> to test contextmenu <br> event capture').openPopup();


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