в вашем случае
int step = 100;
Движение на восток
CameraUpdate update = CameraUpdateFactory.scrollBy(step, 0);
googleMap.moveCamera(update);
Движение на запад
CameraUpdate update = CameraUpdateFactory.scrollBy(-step, 0);
googleMap.moveCamera(update);
Движение на юг
CameraUpdate update = CameraUpdateFactory.scrollBy(0, step);
googleMap.moveCamera(update);
Движение на север
CameraUpdate update = CameraUpdateFactory.scrollBy(0, -step);
googleMap.moveCamera(update);