Is it possible to change the zoom level for myLocation with the new Google Maps API v2?
If you set GoogleMap.setEnableMyLocation(true);, you get a butto
GoogleMap.setEnableMyLocation(true);
In onMapReady() Method
change the zoomLevel to any desired value.
float zoomLevel = (float) 18.0; mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLng, zoomLevel));