我的Google地图代码在Intel XDK中运行。但是当我在实时app.how上运行时无法正常工作以恢复此问题。
的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;
intel.xdk.device.launchExternal(url);
}