我使用Angular Google Maps在我的Ionic應用中實施地圖和地理位置。我根據文檔執行所有操作,但地圖不顯示(即使沒有任何控制檯輸出顯示錯誤)。在Ionic中不顯示角度Google地圖
控制器:
app.controller('panicController', ['$scope', '$cordovaGeolocation',
function($scope, $cordovaGeolocation) {
$scope.map = { center: { latitude: 45, longitude: -73 }, zoom: 8 };
}
]);
查看:
<ion-view hide-nav-bar="true" ng-controller="panicController" class="panic-view">
<ion-content data-tap-disabled="true" class="padding">
<ui-gmap-google-map center='map.center' zoom='map.zoom'></ui-gmap-google-map>
</ion-content>
</ion-view>
SCSS:
.angular-google-map-container {
height: 100%;
}
當我運行它,我只是得到一個空白/空的白色視圖。而我的控制檯輸出:
什麼樣的問題可能是任何想法?
你可以嘗試也給人一種width屬性?在文件中它也有400px的高度。也許100%的高度不起作用。 – Emre