您好我最近不得不使用cordova打开设备上安装的原生地图。到目前为止,这就是我所做的:
function getMapsUrl() {
var isAndroid = navigator.userAgent.match(/Android/);
var isIos = navigator.userAgent.match(/(iPhone|iPod|iPad)/);
if (isAndroid) {
return "geo:0,0?q=";
}
if (isIos) {
return "maps:q=";
}
return "http://maps.google.com/maps?q=";
}
首次打开应用程序时会评估此函数,并且整个应用程序全局使用带有字符串get的set witch的变量,以根据设备创建类似于此的链接:
<a href="maps:q=Linie 27, 5405 AR UDEN, Nederland">iOS Version</a>
<a href="geo:0,0?q=Linie 27, 5405 AR UDEN, Nederland">Android Version</a>
这适用于除iOS5以外的大多数设备。据我所知,这是因为苹果地图是在iOS6中引入的,iOS5仍然使用谷歌地图。
我已经尝试了所有这些在iOS5上打开原生地图应用程序,但我没有运气:
<a href="http://maps.google.com/maps?q=Linie 27, 5405 AR UDEN, Nederland">Android Version Q</a>
br/>
<a href="http://maps.apple.com/maps?q=Linie 27, 5405 AR UDEN, Nederland">iOS Version Q</a>
<br/>
<a href="http://maps.google.com/maps?saddr=Linie 27, 5405 AR UDEN, Nederland">Android Version saddr</a>
<br/>
<a href="http://maps.apple.com/maps?saddr=Linie 27, 5405 AR UDEN, Nederland">iOS Version saddr</a>
<br/>
<a href="maps:q=Linie 27, 5405 AR UDEN, Nederland">iOS curent Version</a>
<br/>
<a href="maps://maps.apple.com/?q=Linie 27, 5405 AR UDEN, Nederland">IOS with google maps</a>
<br/>
<a href="maps:q=Linie 27, 5405 AR UDEN, Nederland">iOS curent Version</a>
<br/>
<a href="comgooglemaps://?q=Linie 27, 5405 AR UDEN, Nederland">From Google Docs for iOS app</a>
<div data-bind="click: WindowOpenClick ">Window.Open</div>
<div data-bind="click: WindowLocationClick">Window.location</div>
<div data-bind="click: WindowOpenClickBlackPage">Window.Open Blank</div>
function WindowOpenClick() {
var mapsUrl = "http://maps.google.com/maps?q=Linie 27, 5405 AR UDEN, Nederland";
window.open(mapsUrl, '_system', 'location=yes');
}
function WindowOpenClickBlackPage() {
var mapsUrl = "http://maps.google.com/maps?q=Linie 27, 5405 AR UDEN, Nederland";
window.open(mapsUrl, '_blank', 'location=yes');
}
function WindowLocationClick() {
var mapsUrl = "http://maps.google.com/maps?q=Linie 27, 5405 AR UDEN, Nederland";
window.location.href = mapsUrl;
}
我添加了上面的所有内容,但它们位于我的应用中的单独文件中。
有没有人知道在iOS5中打开地图应用的方法?
答案 0 :(得分:1)
使用Google地图iOS提及的网址方案comgooglemaps://?q=Linie 27, 5405 AR UDEN, Nederland
。查看此link