Called repeatedly as the camera continues to move after an onCameraMoveStarted
call.
Public Methods
public abstract voidonCameraMove()
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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],["The `GoogleMap.OnCameraMoveListener` interface provides a callback for camera position changes. Its core function, `onCameraMove()`, is invoked repeatedly while the camera is in motion, subsequent to an `onCameraMoveStarted` call. This method is executed on the Android UI thread and is intended for lightweight operations due to its potential for high-frequency execution, occurring as often as once per frame. It serves to update with the map's position when a move action occurs.\n"]]