## Environment - Xcode version: 26.0 - iOS version: 18.6 and 26 - Maps SDK Version: 11.6.1 ## Observed behavior and steps to reproduce Context: on the map there are two pins with multiple possible anchors. When I reach the end of the safe area, during the drag gesture, the pins are flickering. For context, this is how the map pins are initialised. ``` MapViewAnnotation(coordinate: coordinate) { MyView(anchor: anchor) } .allowOverlap(false) .ignoreCameraPadding(true) .variableAnchors([ ViewAnnotationAnchorConfig(anchor: .bottomLeft), ViewAnnotationAnchorConfig(anchor: .bottomRight), ViewAnnotationAnchorConfig(anchor: .topLeft), ViewAnnotationAnchorConfig(anchor: .topRight) ]) .onAnchorChanged { config in onAnchorChanged(config.anchor) } ``` Would it be possible to add a delay to update the pins during the drag gestures? https://github.com/user-attachments/assets/bb274e50-fa1a-44e7-9533-b1b6f1547680
Environment
Observed behavior and steps to reproduce
Context: on the map there are two pins with multiple possible anchors.
When I reach the end of the safe area, during the drag gesture, the pins are flickering.
For context, this is how the map pins are initialised.
Would it be possible to add a delay to update the pins during the drag gestures?
Screen.Recording.2025-11-28.at.12.55.35.mov