从当前位置导航到掉针

时间:2013-04-27 11:58:03

标签: iphone ios objective-c xcode ipad

我有一个地图视图,其中有一个掉落的引脚,我想要做的是显示从用户当前位置到掉落引脚的路由。

我搜索了它,但没有运气,如果有人知道这样做的方法请帮忙吗? :)

提前感谢。

1 个答案:

答案 0 :(得分:1)

试试吧......

你可以用两种方式做到:
1.

CLLocationCoordinate2D start = { c_lat, c_long };
CLLocationCoordinate2D destination = { [[dic valueForKey:@"business_lat"]doubleValue], [[dic valueForKey:@"business_long"]doubleValue] };

NSString *googleMapsURLString = [NSString stringWithFormat:@"http://maps.google.com/?saddr=%1.6f,%1.6f&daddr=%1.6f,%1.6f&",start.latitude, start.longitude, destination.latitude, destination.longitude];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:googleMapsURLString]];

2

使用Google API

请检查this两个位置之间的平局路线

在API中,您只需传递原始名称和目的地名称

希望我帮助....