如何在Leaflet地图多边形上触发事件?

时间:2012-07-10 20:08:57

标签: events map geojson leaflet

我试图弄清楚如何手动触发Leaflet多边形的事件(通过GeoJSON加载)。

简而言之,我有一张带有多个多边形的Leaflet地图。我还在地图外部有一个常规超链接,当点击它时,应该触发特定多边形上的鼠标悬停事件(或任何事件)。

如何为所有多边形分配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
});

});

3 个答案:

答案 0 :(得分:16)

好的,我已经明白了。

您需要为打开弹出窗口的每个多边形创建一个click事件,并为每个多边形分配一个唯一ID,以便稍后可以引用它并手动触发其弹出窗口。

以下内容实现了这一目标:

    var polyindex = 0;

    popup = new L.Popup();

    geojsonLayer = new L.GeoJSON(null, {});

    geojsonLayer.on("featureparse", function (e){

        (function(layer, properties) {

            //click event that triggers the popup and centres it on the polygon
            layer.on("click", function (e) {
                var bounds = layer.getBounds();
                var popupContent = "popup content here";
                popup.setLatLng(bounds.getCenter());
                popup.setContent(popupContent);
                map.openPopup(popup);
            });

        })(e.layer, e.properties);

        //assign polygon id so we can reference it later
        e.layer._leaflet_id = 'polyindex'+polyindex+'';

        //increment polyindex used for unique polygon id's
        polyindex++;
    });

    //add the polygon layer
    map.addLayer(geojsonLayer);
    geojsonLayer.addGeoJSON(neighbourhood_polygons);

然后手动触发特定图层点击事件,只需按以下方式调用:

map._layers['polyindex0'].fire('click');

方括号之间的所有内容都是您要触发的图层的唯一ID。在这种情况下,我正在触发图层ID polyindex0的点击事件。

希望此信息可以帮助其他人!

答案 1 :(得分:3)

所以,快速更新。

只需在您需要的任何图层上调用fireEvent(或其别名<script> function validateForm() { var x = document.forms["sentMessage"]["email"].value; if (x == null || x == "") { alert("メールアドレスを入力してください"); return false; } } </script> )。

你不需要冒险._private [Vars],只需获得对目标层的引用并消灭,例如。

fire

答案 2 :(得分:2)

function clickMarker(i){
var popupContent = "content here or html format",
popup = new L.Popup({offset:new L.Point(0,-28)});

popup.setLatLng(LatLng);
popup.setContent(popupContent);
map.panTo(LatLng);
map.openPopup(popup); }

i =得到一个相应的坐标,即LatLng