请帮我解决这个问题。我正在尝试使用英特尔XDK中的Angularjs创建一个移动应用程序。下面的代码在XDK中工作。但是当我运行实时应用程序地图时无效。
的index.html
<div class="item item-divider" style="font-size:18px;">
<i class="icon ion-map"></i>
<a ng-click="launchGoogleMaps()">Location map</a>
</div>
App.js
$scope.launchGoogleMaps=function(){
var url = "http://maps.google.com/maps?ll="+$scope.temple.latitude+","+$scope.temple.longitude;
/* var url = "googlemaps://?center="+$scope.temple.latitude+","+$scope.temple.longitude+"&zoom=14";*/
intel.xdk.device.launchExternal(url);
}