Направление на iOS с использованием Cordova 7.1.0 - PullRequest
0 голосов
/ 26 августа 2018

До 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 сейчас, чтобы включить это?

...