+(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
Saturday, May 26, 2012
Enable ARC in a Non ARC project
Small trick to enable ARC on a specific file in a non-ARC project by using the flag
-fobjc-arc
Subscribe to:
Posts (Atom)