如何找到geojson中的标记?

时间:2014-08-20 07:04:35

标签: leaflet marker geojson

我有这样的geojson图层:

          var icon_mfc = L.icon({
                iconUrl: 'icons/mfc_h32.png',
                iconAnchor: [11, 32]
          });
          var mfc_layer = L.geoJson(mfc,{
                        pointToLayer: function (feature, latlng) {
                               return L.marker(latlng, {icon: icon_mfc}).bindPopup(feature.properties.name);
                        }
          });

我想找到标记,我想在此标记上打开和打开弹出窗口,我知道(例如)属性标记" feature.properties.name"。

1 个答案:

答案 0 :(得分:1)

使用.eachLayer方法迭代图层,并在其中编写JavaScript逻辑。