Is it possible in Leaflet that popup opens on mouse-over, not on click?
This is working for just one marker at a time, but I need it for a bigger number of markers:
marker.on('mouseover', function(e){
marker.openPopup();
});
|
|
This is not a Leaflet-specific problem, but rather a question of Javascript. Store your markers in a collection, and then bind For example, with an array:
|
|||||||
|