Showing posts with label location. Show all posts
Showing posts with label location. Show all posts

Monday, May 28, 2012

Launching Map App on iOS to show route between source and destination location


+(void)showRouteOnMapFrom:(CLLocationCoordinate2D)sourceCoordinate to:(CLLocationCoordinate2D) destCoordinate
{
    NSString* urlString = [NSString stringWithFormat: @"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f",
                           sourceCoordinate.latitude, sourceCoordinate.longitude,destCoordinate.latitude, destCoordinate.longitude];
    
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlString]];
}