【发布时间】:2012-07-10 09:22:36
【问题描述】:
我正在尝试弄清楚如何手动触发 Leaflet 多边形的事件(通过 GeoJSON 加载)。
简而言之,我有一张带有许多多边形的传单地图。我在地图外还有一个常规超链接,当点击它时,应该会在特定多边形上触发鼠标悬停事件(或任何事件)。
如何为所有多边形分配 ID,以便将超链接绑定到特定多边形的事件?或者这是最合乎逻辑的方式吗?
最终,我试图创建一个包含大量多边形的地图以及与每个多边形相关联的文本标签的 HTML 表格。单击 HTML 表格文本时,我想在地图多边形上触发事件(反之亦然)。我只是不知道如何引用每个多边形。
这是我非常简化的 HTML:
<body>
<div id="map" style="height: 550px; width:940px"></div>
<a href="#" id="testlink">Click to trigger a specific polygon mouseover event</a>
</body>
这是我非常简化的 JS:
$(document).ready(function () {
// build the map and polygon layer
function buildMap(data) {
var map = new L.Map('map');
var cloudmadeUrl = 'http://{s}.tile.cloudmade.com/***yourkeyhere***/66267/256/{z}/{x}/{y}.png',
cloudmadeAttribution = '',
cloudmade = new L.TileLayer(cloudmadeUrl, {maxZoom: 18, attribution: cloudmadeAttribution});
var mapLoc = new L.LatLng(43.675198,-79.383287);
map.setView(mapLoc, 12).addLayer(cloudmade);
var geojsonLayer = new L.GeoJSON(null, {});
geojsonLayer.on("featureparse", function (e){
// apply the polygon style
e.layer.setStyle(polyStyle);
(function(layer, properties) {
layer.on("mouseover", function (e) {
// change the style to the hover version
layer.setStyle(polyHover);
});
});
layer.on("mouseout", function (e) {
// reverting the style back
layer.setStyle(polyStyle);
});
layer.on("click", function (e) {
// do something here like display a popup
console.log(e);
});
})(e.layer, e.properties);
});
map.addLayer(geojsonLayer);
geojsonLayer.addGeoJSON(myPolygons);
}
// bind the hyperlink to trigger event on specific polygon (by polygon ID?)
$('#testlink').click(function(){
// trigger a specific polygon mouseover event here
});
});
【问题讨论】:
标签: events map geojson leaflet