Page Summary
-
The GoogleMap.OnCameraMoveCanceledListener is a callback interface for when the camera's motion stops or starts moving for a new reason.
-
The
onCameraMoveCanceled()method is called whenGoogleMap.stopAnimation()is explicitly called or the reason for camera motion changes beforeonCameraIdlefires. -
Do not update or animate the camera from within the
onCameraMoveCanceled()method. -
This callback is executed on the Android UI thread.
Callback interface for when the camera's motion has been stopped or when the camera starts moving for a new reason.
Public Method Summary
| abstract void |
onCameraMoveCanceled()
Called when the developer explicitly calls the
GoogleMap.stopAnimation() method or if the reason for camera motion
has changed before the onCameraIdle had a chance to fire after the previous
animation.
|
Public Methods
public abstract void onCameraMoveCanceled ()
Called when the developer explicitly calls the GoogleMap.stopAnimation()
method or if the reason for camera motion has changed before the onCameraIdle had a
chance to fire after the previous animation. Do not update or animate the camera from
within this method.
This is called on the Android UI thread.