如何在ios中通过谷歌地图查找路线?

时间:2012-09-06 06:59:14

标签: iphone

我已经搜索过,但我没有得到我想要的东西。

我正在开发一个应用程序,我想从我的应用程序中提供位置名称和

调用谷歌地图以显示路线。我需要写什么网址才能找到方向

请帮助。

请回复我的任何澄清......

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

获取行车路线不是IOS Mapkit框架的一部分。使用Google地图APi进行此操作。我想这可能会对你有帮助

 https://maps.google.com/maps?saddr=cochin&daddr={destination_address}

实施例

 http://maps.google.com/maps?daddr=San+Francisco,+CA&saddr=cupertino

请参阅Apple开发者网站here的链接。

您可以将网址格式化为

Nsstring * startLocation = @"Mumbai";
NSString * endLocation = @"Delhi";

 NSString * urlString = [NSString stringWithFormat:"https://maps.google.com/maps?saddr=%@&daddr=%@",startLocation,endLocation];
NSURL * url = [NSURL urlWithString:urlString];