CameraUpdate

public final class CameraUpdate extends Object

Defines a camera move. An object of this type can be used to modify a map's camera by calling animateCamera(CameraUpdate),animateCamera(CameraUpdate, GoogleMap.CancelableCallback)ormoveCamera(CameraUpdate).

To obtain aCameraUpdateuse the factory classCameraUpdateFactory.

For example, to zoom in on a map, you can use the following code:

GoogleMap map =...;
map.animateCamera(CameraUpdateFactory.zoomIn());

Developer Guide

For more information, read theCamera and View developer guide.

Inherited Method Summary