作者:手机用户2502877953 | 来源:互联网 | 2023-05-16 16:18
我有一个变量,目的地,我需要用引脚打开原生Apple Maps才能到达目的地.我已经尝试过这里解答的解决方案:Phonegap - 在Apple Maps App中打开导航方向,但是没有用.如果我在测试时通过浏览器到达"maps://xx.xxxx,yy.yyyy",则会打开"unsafe:/ maps://xx.xxxx,yy.yyyy".它没有固定地图,它从未指向我选择的目的地.我该如何解决这个问题?
1> jcesarmobile..:
你可以尝试两件事
将此行添加到config.xml
使用带有_system选项的inAppBrowser插件:
var ref = window.open('maps://?q=xx.xxxx,yy.yyy', '_system');
但是你应该查看地图应用的网址方案
https://developer.apple.com/library/safari/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html#//apple_ref/doc/uid/TP40007899-CH5-SW1
如果你想要方向,你应该使用daddr=
参数
2> 小智..:
我使用LaunchNavigator cordova插件轻松实现所需的结果.当与Geo-Location cordova插件配合使用时,这在iOS和Windows手机上效果最佳.
要添加LaunchNavigator和Geo-Location Cordova插件:打开终端窗口,导航到项目目录的根目录并运行以下两个命令.
cordova plugin add cordova-plugin-geolocation
cordova plugin add uk.co.workingedge.phonegap.plugin.launchnavigator
之后,我通过将以下代码添加到我的项目中来实现映射到给定纬度/经度的功能.
var latitude = 39.7392, lOngitude= -104.9903;
launchnavigator.navigate([latitude, longitude]);
或者我通过将以下代码添加到我的项目来实现映射到地址字符串的功能.
var destination = "Denver, Colorado";
launchnavigator.navigate(destination);
我发现这是向移动应用程序最终用户提供"点击指示"功能的最简单方法.对于iOS,Android和Windows Phone应用程序,这适用于我(代码没有变化).