[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-03-21 (世界標準時間)。"],[[["`GoogleMap.OnMarkerDragListener` is a callback interface used to handle marker drag events on Google Maps in Android."],["It provides three methods: `onMarkerDragStart`, `onMarkerDrag`, and `onMarkerDragEnd`, which are triggered when a marker drag starts, continues, and ends, respectively."],["All listener methods are executed on the Android UI thread, ensuring they can interact with UI elements directly."],["The `Marker` object provided to the listener methods allows access to the marker's current position during the drag process."]]],["`GoogleMap.OnMarkerDragListener` is a callback interface for marker drag events on Android. It contains three key methods: `onMarkerDragStart`, triggered when a marker drag begins; `onMarkerDrag`, called continuously during the drag; and `onMarkerDragEnd`, invoked when the drag finishes. Each method receives the dragged `Marker` object, and its position can be obtained with `getPosition()`. All events are executed on the UI thread.\n"]]