Closed jeevasusej closed 7 years ago
Yes, I think so, if Leaflet triggers the appropriate events :)
Yep, definitely!
You can use zoomstart
and zoomend
events of leaflet like this :
map.on('zoomstart', function () {
map.spin(true);
} );
map.on('zoomend', function () {
map.spin(false);
} );
Can we show spinner while zooming?