我想弄清楚 Google Map 的 API 是如何给我们指路的。
创建一个示例工具,我可以使用我的位置作为起点并选择另一个位置,然后我可以在现有应用程序的文本和地图上查看方向(驾车和步行)。
我没有使用谷歌地图API,所以我对此完全天真
谁能帮我这个?
我想弄清楚 Google Map 的 API 是如何给我们指路的。
创建一个示例工具,我可以使用我的位置作为起点并选择另一个位置,然后我可以在现有应用程序的文本和地图上查看方向(驾车和步行)。
我没有使用谷歌地图API,所以我对此完全天真
谁能帮我这个?
尝试这个,
NSString *urlstring=[NSString stringWithFormat:@"http://maps.google.com/?saddr=%f,%f&daddr=%f,%f",sourcelocation.latitude,sourcelocation.longitude,destinationlocation.latitude,destinationlocation.longitude];
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:urlstring]];
代码的作用是,它将在谷歌地图上显示您的源位置和目标位置之间的路线。
如果你没有经度,那么你可以这样做: -
NSString *source=@"NorthCarolina";
NSString *destination=@"SouthCarolina";
NSString *urlstring=[NSString stringWithFormat:@"http://maps.google.com/?saddr=%@&daddr=%@",source,destination];
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:urlstring]];
我希望这会对你有所帮助。快乐的编码:)