I have this code
LatLngBounds.Builder builder = new LatLngBounds.Builder();
builder.include(mainLocation);
builder.include(userLocation);
LatLngBounds bounds = builder.build();
CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(bounds, 0);
mMap.animateCamera(cu);
And this works it shows bounds but i would like to show bounds on the top half of the screen (is there a way to put offset y?).
(Hope this picture will explain things better)