Google Maps v2 Set Zoom Level

前端 未结 5 808
遇见更好的自我
遇见更好的自我 2021-02-12 16:46

When I launch Google maps in Android, it shows the whole world. What do i need to change so as to set the zoom to the marker? Here are the codes. Thanks

                 


        
5条回答
  •  再見小時候
    2021-02-12 17:14

        private GoogleMap mMap;
    
    
       @Override
        public void onMapReady(GoogleMap googleMap) {
            mMap = googleMap;
            mMap.setMinZoomPreference(3.0f);
            mMap.setMaxZoomPreference(5.5f);
        }
    

提交回复
热议问题