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.setZoom(this.options.defaultZoomLevel, { animate: false });
|
||||||
this.map.panTo(bounds.getCenter(), { animate: false });
|
this.map.panTo(bounds.getCenter(), { animate: false });
|
||||||
} else {
|
} else {
|
||||||
this.map.once('zoomend', function () {
|
this.map.once('zoomend', () => {
|
||||||
if (!this.options.defaultZoomLevel && this.options.map.getZoom() > this.options.minZoomLevel) {
|
if (!this.options.defaultZoomLevel && this.map.getZoom() > this.options.minZoomLevel) {
|
||||||
this.map.setZoom(this.options.minZoomLevel, { animate: false });
|
this.map.setZoom(this.options.minZoomLevel, { animate: false });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -323,4 +323,4 @@ export default abstract class LeafletMap {
|
|||||||
this.polygons.get(key).updatePolygon(data, dataSources, settings);
|
this.polygons.get(key).updatePolygon(data, dataSources, settings);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user