I have a map where the starting zoom level is 5. When a user clicks on a point, I want the map to go to that point and and change the zoom to level 10. I'm using the flyTo() method to center the map on the point. How can I change the zoom level?
I have a map where the starting zoom level is 5. When a user clicks on a point, I want the map to go to that point and and change the zoom to level 10. I'm using the flyTo() method to center the map on the point. How can I change the zoom level?
Share Improve this question asked May 22, 2018 at 19:45 leelum1leelum1 1,25411 silver badges20 bronze badges1 Answer
Reset to default 10I realised I can add zoom to flyTo() like:
map.flyTo({center: e.features[0].geometry.coordinates, zoom:10});
I'll take my downvote