Android maps - Markers Bounds at the center of top half of map area
问题 I have Android Map Extension attached under actionBar. I have couple of markers, lets say 2000. Than I have ArrayList of selected 3 markers upon some constant condition, nevermind. I want to zoom and move map to include this selected 3 markers at max possible zoom. It's an easy task, from this forum I found an easy way to do it : LatLngBounds bounds = new LatLngBounds.Builder().include(new LatLng(maxLat, maxLon)).include(new LatLng(minLat, minLon)).build(); mMap.moveCamera(CameraUpdateFactory