Maps MAPS & LOCATION: - import MapKit; use Map(position:) { } for SwiftUI maps - Annotation("Label", coordinate:) { } for custom map pins - MapCircle, MapPolyline for overlays - CLLocationManager for user location — requires NSLocationWhenInUseUsageDescription (add CONFIG CHANGES) - @State private var position: MapCameraPosition = .automatic - MKLocalSearch for place search; MKDirections for routing - .mapControls { MapUserLocationButton(); MapCompass() } OVERLAY PATTERNS ON MAP VIEWS: - Map() with .ignoresSafeArea() fills screen edge-to-edge (behind status bar and home indicator) - For overl…