リーフレット ポリゴンでネイティブ ポップアップを手動でトリガーするにはどうすればよいですか?
次のように、ネイティブ ポップアップを各レイヤーにバインドできます。
geojsonLayer.on("featureparse", function (e){
// bind the native popup
var popupContent = "popup content goes here";
e.layer.bindPopup(popupContent);
});
そして、後で次のように参照できるように、各ポリゴンに手動で ID を割り当てました。
map._layers['poly0']
次のようにポップアップをトリガーしようとしました:
map._layers['poly0'].openPopup();
しかし、それは私に次のようなエラーを与えます:
map._layers['poly0'].openPopup is not a function
どこが間違っているのか分かりますか?