目前我这样做是为了“获取路线”:
NSString *googleMapsURLString;
googleMapsURLString = [NSString stringWithFormat:
@"http://maps.google.com/?saddr=%1.6f,%1.6f&daddr=%1.6f,%1.6f",
curLoc.latitude, // Start
curLoc.longitude,
self.hotspot.coordinate.latitude,
self.hotspot.coordinate.longitude];
NSLog(@"Opening URL: %@",googleMapsURLString);
NSURL *url = [NSURL URLWithString:googleMapsURLString];
[[UIApplication sharedApplication] openURL:url];
有没有人知道是否有参数通过步行获取方向而不是默认驾驶?
答案 0 :(得分:15)
添加
dirflg=w
参数。