I have made a android application where I am showing current location of a user.
@Override public void onLocationChanged(Location location) { mLastLocation = location; if (currLocationMarker != null) { currLocationMarker.remove(); } //Place current location marker LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude()); MarkerOptions markerOptions = new MarkerOptions(); markerOptions.position(latLng); markerOptions.title("Current Position"); markerOptions.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_RED)); currLocationMarker = mGoogleMap.addMarker(markerOptions); mGoogleMap.animateCamera( CameraUpdateFactory.newLatLngZoom(new LatLng(location.getLatitude(),location.getLongitude()) , 6.0f) ); } It gives me my current location with marker but problem is whenever I try to zoom out from the current location, within some seconds it focused again to the same location (Current) so I am not able to see my other points (Markers) on the map.
How to disable this auto zoom in feature in Google Maps?