在Cordova 7.1.0之前,我的路线功能可以正常运行。这是我的代码:
if ( ons.platform.isIOS() ) {
dirUrl = "maps:daddr=" + currentItem.location.latitude + ',' + currentItem.location.longitude;
} else if ( ons.platform.isAndroid() ) {
var label = encodeURI(currentItem.business_name);
dirUrl = "geo:0,0?q=" + currentItem.location.latitude + ',' + currentItem.location.longitude + "(" + label + ")";
}
$( ".item-directions" ).on( "click", function( evt ) {
window.location.href = $( ".item-dir" ).attr( "href" );
evt.preventDefault();
} );
这不再起作用。现在我需要在iOS中启用新的设置/权限吗?