gpt4 book ai didi

iphone - 从当前位置导航到放置的图钉

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:43:24 25 4
gpt4 key购买 nike

我有一个 map View ,里面有一个掉落的图钉,我想做的是显示从用户当前位置到掉落的图钉的路线。

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

提前致谢。

最佳答案

试一试....

您可以使用两种方式来完成:
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.

使用谷歌 API

请查看this用于在两个位置之间绘制路线

在API中你只需要传递起点名称和终点名称

希望我帮到了....

关于iphone - 从当前位置导航到放置的图钉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16251847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com