gpt4 book ai didi

ios - 如何在 google map 中使用起点和终点之间的 url 和参数创建路线?

转载 作者:行者123 更新时间:2023-11-28 23:56:28 25 4
gpt4 key购买 nike

我想在网络中打开一个url 并自动在两点之间创建一条路线。我在 google map 文档中找不到正确的 url 和参数。

最佳答案

对于 Swift 4Swift 5

let apiKey = "https://www.google.com/maps/dir/" + userCurrentLocation.coordinate.latitude + "," + userCurrentLocation.coordinate.longitude + "/" + nextCurrentLocation.coordinate.latitude + "," + nextCurrentLocation.coordinate.longitude

var url = URL(string: apikey)

对于 objective-c 使用

   NSString *apikey = [NSString stringWithFormat:@"https://www.google.co.in/maps/dir/%f,%f/%f,%f",userCurrentLocation.coordinate.latitude,userCurrentLocation.coordinate.longitude,nextCurrentLocation.coordinate.latitude,nextCurrentLocation.coordinate.longitude;

NSURL *url = [NSURL URLWithString:apikey];

[[UIApplication sharedApplication] openURL:url];

关于ios - 如何在 google map 中使用起点和终点之间的 url 和参数创建路线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51113271/

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