2015-05-26 112 views
-1

我有一些問題顯示我的Android手機上的谷歌地圖。 此代碼工作完全在谷歌瀏覽器,但我得到一個白色屏幕手機谷歌地圖不在Android手機離子框架呈現

這裏的是我的HTML代碼:

<body ng-app="starter" ng-controller="ctrl"> <ion-content> <div id="map"></div> </ion-content> </body>

而這裏的JavaScript的:

app.controller('ctrl', function($scope, $ionicLoading) { 

google.maps.event.addDomListener(window, 'load', function() { 
    var myLatlng = new google.maps.LatLng(37.3000, -120.4833); 

    var mapOptions = { 
     center: myLatlng, 
     zoom: 16, 
     mapTypeId: google.maps.MapTypeId.ROADMAP 
    }; 

    var map = new google.maps.Map(document.getElementById("map"), mapOptions); 

    navigator.geolocation.getCurrentPosition(function(pos) { 
     map.setCenter(new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude)); 
     var myLocation = new google.maps.Marker({ 
      position: new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude), 
      map: map, 
      title: "My Location" 
     }); 
    }); 

    $scope.map = map; 
}); 

});

感謝您的幫助

回答