0
の_leaflet_id
にアクセスして、function onEachFeature
でそれぞれfeature
にアクセスします。_leaflet_idは、onEachFeature関数の中で未定義を返します
function onEachFeature(feature, layer) {
console.log(layer._leaflet_id);
}
使用しているとき、私は正しい_leaflet_id
を取得する:とそれを使用するときには必ず、undefined
を返し
sampleGeoJSON.eachLayer(function(layer) {
console.log(layer._leaflet_id);
})