When I animate the camera with google maps function, my app is zooming in map and screen this into center of my layout. I want to show this bottom of my layout.
Here is my code.
CameraPosition cameraPosition = new CameraPosition.Builder()
.target(latLng1)
.zoom(24f)
.bearing(-30)
.tilt(75)
.build();
map.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition));
bearing is not working.