2017/01/27 · To toggle a marker from blinking to non-blinking, you can use Leaflet's DomUtil to add the blinking class to the marker's img element: // With the class added, the marker will blink: L.DomUtil.addClass (marker._icon, "blinking"); // Without the class, it won't: L.DomUtil.removeClass (marker._icon, "blinking"); Thanks, but is not exactly what I