I'm using custom divIcons for my Leaflet markers. I want to add a border to whatever marker I click on, with some simple CSS:
.selectedMarker {
border: 10px solid gold;
}
However, the following with jQuery doesn't work:
$(marker).addClass('selectedMarker');
Then I tried to use Leaflet's own addClass() method. I tried to call use it in the following ways:
marker.addClass('selectedMarker');
L.addClass(marker, 'selectedMarker');
addClass(marker, 'selectedMarker');
DomUtil.addClass(marker, 'selectedMarker');
None of these work. How do I add the selectedMarker class to my marker?
I have done it by adding a class to the marker with
and then use the css
without using jQuery,
In 1.0 and 0.7 you can use L.DomUtil to add remove classes from a DOM element: