从phonegap打开本机地图应用程序

时间:2011-11-29 11:57:59

标签: iphone google-maps cordova

是否有用于打开以某个位置为中心或显示路线的原生地图应用的phonegap解决方案?

2 个答案:

答案 0 :(得分:8)

我想通了,只是使用窗口位置,设备拦截它......

$('#map').bind('tap', function(){
    var url = 'http://maps.google.com/maps?';
    url += 'q=[place_name]';
    url += '&near=';
    url += [lat];
    url += ',';
    url += [lon];
    url += '&z=15';
    // open the native maps app by calling window location
    window.location = url;
});

答案 1 :(得分:1)

要打开iOS6地图应用,请使用maps.apple.com域。

请参阅:

相关问题