How to set the Google Map zoom level to show all the markers?

后端 未结 4 1881
时光取名叫无心
时光取名叫无心 2020-12-08 00:36

How do I set the zoom level to show all the markers on Google Maps?

In my Google Map there are different markers in different positions. I want to set google map zoo

4条回答
  •  再見小時候
    2020-12-08 01:27

    If you are using API version 3 you can replace

    map.setCenter(markerBounds.getCenter(), map.getBoundsZoomLevel(markerBounds));
    

    with

    map.fitBounds(markerBounds).
    

提交回复
热议问题