I have a feature group containing several markers.
And I have this code to respond to a click on any of the markers:
sampleFeatureGroup.on("click", function(){
alert(this.id); // something like this
});
I want to be able to get the id of the marker which is clicked on from within the function, however "this" refers to the feature group, so I cannot find the id of the marker clicked on, this seems like it should be easy but I can't figure it out.
You must use
eachLayer
to iterate through the featureGroup, and then bind a function to the click event, like this:Here's a working example on Plunker: http://plnkr.co/edit/4fh7vhVet8N0iD4GE3aN
And here's the reference to
eachLayer
: http://leafletjs.com/reference.html#layergroup-eachlayer