I have set zoom and camera around a marker on googlemap using following code
LatLng coordinate = new LatLng(lat,lon);
CameraUpdate yourLocation = CameraUpdateFactory.newLatLngZoom(coordinate, 11.0f);
map.animateCamera(yourLocation);
Its working but when i try to zoom in or out using gesture or control it goes back to same zoom level which is set initially.
What additional settings are required ?
thanks