在stackoverflow找到了解决方法:http://stackoverflow.com/questions/1563880/launch-google-maps-app-from-iphone-application
CLLocationCoordinate2D stationLocation = ...
NSString *urlString = [[NSString alloc]
initWithFormat:@"http://maps.google.com/maps?saddr=%f,%f&daddr=%f,%f&dirfl=d",
curLocation.latitude,
curLocation.longitude,
stationLocation.latitude,
stationLocation.longitude];
NSURL *aURL = [NSURL URLWithString:urlString];
[urlString release];
[[UIApplication sharedApplication] openURL:aURL];
google map的参数说明文档:Google Map Parameters
http://www.cocoachina.com/bbs/read.php?tid=80680