mapbox-ios-patterns
Audited by Runlayer on Feb 22, 2026
Malicious tool definition detected
Tool: AGENTS.md Description: # Mapbox iOS Quick Reference Fast reference for Mapbox Maps SDK v11 on iOS with Swift, SwiftUI, and UIKit.
Malicious tool definition detected
Tool: SKILL.md [1/2] Description: --- name: mapbox-ios-patterns description: Official integration patterns for Mapbox Maps SDK on iOS.
Tool: SKILL.md [2/2] Description: ) // UIKit - Immediate mapView.mapboxMap.setCamera(to: CameraOptions( center: CLLocationCoordinate2D(latitude: 40.7128, longitude: -74.0060), zoom: 14, bearing: 90, pitch: 60 )) ``` ### Animated Camera Transitions ```swift // Fly animation (dramatic arc) mapView.camera.fly(to: CameraOptions( center: destination, zoom: 15 ), duration: 2.0) // Ease animation (smooth) mapView.camera.ease(to: CameraOptions( center: destination, zoom: 15 ), duration: 1.0) ``` ### Fit