Animate a visual element along an arc in MapKit
How do I add and animate a visual element along an arc, which I have created inside mapkit ? The following code will create a nice arc between two points. Imagine an animated visual that will represent an airplane flying along this arc. -(void)addArc { CLLocationCoordinate2D sanFrancisco = { 37.774929, -122.419416 }; CLLocationCoordinate2D newYork = { 40.714353, -74.005973 }; CLLocationCoordinate2D pointsArc[] = { sanFrancisco, newYork }; // MKGeodesicPolyline *geodesic; geodesic = [MKGeodesicPolyline polylineWithCoordinates:&pointsArc[0] count:2]; // [self.mapView addOverlay:geodesic]; } The