使用Cordova 7.1.0在iOS上的指导

时间:2018-08-26 16:05:39

标签: javascript ios cordova phonegap monaca

在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中启用新的设置/权限吗?

0 个答案:

没有答案