How is it possible to bring the map immediately across the locality, namely, if, like an example, the markers are in the same city, then immediately open the approximate map of this city. 
Markers are added as follows:
public class MapActivity extends FragmentActivity implements OnMapReadyCallback { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_map); createMapView(); } private void createMapView() { MapFragment mapFragment = (MapFragment) getFragmentManager() .findFragmentById(R.id.map); mapFragment.getMapAsync(this); } @Override public void onMapReady(GoogleMap map) { map.getUiSettings().setZoomControlsEnabled(true); LatLngBounds.Builder builder = new LatLngBounds.Builder(); Marker marker = map.addMarker(new MarkerOptions() .position(new LatLng(0, 0)) .title("Marker")); builder.include(marker.getPosition()); LatLngBounds bounds = builder.build(); int padding = 50; CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(bounds, padding); map.moveCamera(cu); } PS probably not the best solution.