我对Leaflet-map的点击事件有疑问。
我将Layers-control移出map-element,如下所示:
document.getElementById('outside-controls').appendChild(ctrl.getContainer());
之后,每次更改图层控制设置时,我都会错过点击事件。
以下是工作示例代码:
var dom_documentClicks = document.getElementById('document-clicks'),
dom_mapClicks = document.getElementById('map-clicks'),
count_documentClicks = 0,
count_mapClicks = 0;
var osmUrl = 'http://{s}.tile.osm.org/{z}/{x}/{y}.png',
osmAttrib = '© <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors',
osm = L.tileLayer(osmUrl, {
maxZoom: 18,
attribution: osmAttrib
}),
poly = L.polygon([]),
ctrl = L.control.layers({}, {'Polygon Layer': poly}, {collapsed: false});
// initialize the map on the "map" div with a given center and zoom
var map = L.map('map', {layers: [osm, poly]}).setView([61.497752, 23.760954], 12);
ctrl.addTo(map);
// This seems to be the reason why click-event is not emitted.
document.getElementById('outside-controls').appendChild(ctrl.getContainer());
function onDocumentClick(e) {
count_documentClicks++;
dom_documentClicks.innerHTML = count_documentClicks;
}
function onMapClick(e) {
count_mapClicks++;
dom_mapClicks.innerHTML = count_mapClicks;
}
map.on('click', onMapClick);
document.addEventListener('click', onDocumentClick);
并链接到jsFiddle:http://jsfiddle.net/LnzN2/135/
任何知道如何摆脱这个问题的人(错误?)?
答案 0 :(得分:1)
似乎ctrl.getContainer()返回使用map中的下一个click-event的div。
更改时:
ctrl.getContainer()
到此:
ctrl.getContainer().childNodes[0]
它有效!