I am trying to implement the Ant Path extension for the Leaflet javascript library but I am having difficulty fixing an issue with the animation. When the map is zoomed out, the animation is paused. I found this issue on the github page - no animation when zoom<=0 but I can't apply this fix because I am using a CDN.
Here is my jsfiddle where you can see the issue in action: https://jsfiddle.net/yqmaztrb/
const antpath = L.polyline.antPath(path, {
"delay": 200,
"dashArray": [
10,
20
],
"weight": 4,
"color": "black",
"pulseColor": "#FFFFFF",
"paused": false,
"reverse": false,
"hardwareAccelerated": true
});
antpath.addTo(map);
Any ideas how to fix it?