+(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]]; }
I am an iOS developer. Sharing what I’ve learned with others is the main reason why I started this blog. Most of my blogs are going to be on design and programming as this is what I do most of the time :) .
Monday, May 28, 2012
Launching Map App on iOS to show route between source and destination location
Labels:
coordinates,
destination,
google,
iOS,
iPhone,
location,
map,
route,
Source
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment