我有这样的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"。