Multiple Locations on Map (using MKMapItem and CLGeocoder)
I'm trying to display multiple locations in MKMapItem . I am getting those locations from a CLGeocoder , unfortunately it only accepts one location. Even though I pass in an NSArray it just returns one location. The following works fine with a single location, but not with multiple locations. How can I geocode multiple locations? Class mapItemClass = [MKMapItem class]; if (mapItemClass && [mapItemClass respondsToSelector:@selector(openMapsWithItems:launchOptions:)]) { NSArray *addresses = @[@"Mumbai",@"Delhi","Banglore"]; CLGeocoder *geocoder = [[CLGeocoder alloc] init]; [geocoder