Fix Map fitBounds method
This commit is contained in:
parent
a1347eb03e
commit
8e61d9c829
@ -170,8 +170,8 @@ export default abstract class LeafletMap {
|
||||
this.map.setZoom(this.options.defaultZoomLevel, { animate: false });
|
||||
this.map.panTo(bounds.getCenter(), { animate: false });
|
||||
} else {
|
||||
this.map.once('zoomend', function () {
|
||||
if (!this.options.defaultZoomLevel && this.options.map.getZoom() > this.options.minZoomLevel) {
|
||||
this.map.once('zoomend', () => {
|
||||
if (!this.options.defaultZoomLevel && this.map.getZoom() > this.options.minZoomLevel) {
|
||||
this.map.setZoom(this.options.minZoomLevel, { animate: false });
|
||||
}
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user