I have a leaflet map with many layers and each layer has many objects. Is there a way to fit the map bounds so that all objects in all layers are visible?
Bound a Leaflet map to many layers
1.6k Views Asked by T.G. Dallas At
2
I have a leaflet map with many layers and each layer has many objects. Is there a way to fit the map bounds so that all objects in all layers are visible?
If you're using or could switch to FeatureGroup, which is extended from LayerGroup, you have the getBounds method which would return the bounds of all the layers/features in your group. Those you could use with fitBounds method of your mapinstance.