GoogleMap.OnCameraMoveListener

  • The GoogleMap.OnCameraMoveListener is a callback interface that triggers when the map's camera changes position.

  • The onCameraMove() method is called repeatedly while the camera is moving after an initial move has started.

  • The onCameraMove() method is called on the Android UI thread and should not perform costly operations due to its frequent execution.

public static interface GoogleMap.OnCameraMoveListener

Callback interface for when the camera changes position.

Public Method Summary

abstract void
onCameraMove()
Called repeatedly as the camera continues to move after an onCameraMoveStarted call.

Public Methods

public abstract void onCameraMove ()

Called repeatedly as the camera continues to move after an onCameraMoveStarted call. This may be called as often as once every frame and should not perform expensive operations.

This is called on the Android UI thread.