我正在尝试打开带有经纬度目的地地址的谷歌地图应用程序。我试过这样:
[NSURL URLWithString"comgooglemaps://?daddr=51.140566,4.441389k&directionsmode=driving"]];
但它总是告诉我没有路线。
能否指出我做错了什么?
Best Answer-推荐答案 strong>
发现问题。通过复制粘贴 long 和 lats,我的参数中多了一个 k。
[[UIApplication sharedApplication] openURL:
[NSURL URLWithString:[NSString stringWithFormat"comgooglemaps://?daddr=%@,%@&directionsmode=driving", latitude, longitude]]];
关于ios - 谷歌地图方案通过纬度和经度给出方向不起作用,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/25381686/
|