所以我使用来自 http://angular-ui.github.io/angular-google-maps/#!/api的 angular-google-maps 指令 ,我无法在我的地图实例上看到我的标记。我已经尝试了几乎所有事情,并且迫切需要建议。我尝试将 $scope.markers 移动到我的 $scope.map 对象,尝试将其移动到我的 $watch 函数中,然后将值直接添加到 html 中,但没有成功。我认为这与我必须添加的 $scope.control.refresh() 函数有关,以便地图在选项卡中完全加载(我正在使用角度引导选项卡)。
谢谢你的帮助!
HTML
<div ng-controller="LocationCtrl" ng-cloak>
<div class="map-canvas" ng-if="locationActive">
<ui-gmap-google-map draggable="true" center='map.center' zoom='map.zoom' control="control">
<ui-gmap-marker coords="markers.coords" idKey="markers.idKey">
</ui-gmap-marker>
</ui-gmap-google-map>
</div>
</div>
JAVASCRIPT
(function() {
'use strict';
var locationCtrl = function($scope, uiGmapIsReady, $timeout) {
$scope.map = {
center: { latitude: 36.132411, longitude: -80.290481 },
zoom: 15
};
$scope.control = {};
$scope.active = $scope.$parent.active;
$scope.locationActive = $scope.active().active;
$scope.$watch($scope.active, function() {
$timeout(function() {
uiGmapIsReady.promise().then(function () {
$scope.control.refresh();
var map = $scope.control.getGMap();
$scope.markers= {
idKey: 1,
coords: {
latitude: 36.132411,
longitude: -80.290481
}
};
});
}, 0);
});
};
angular.module('boltlandApp').controller('LocationCtrl', locationCtrl);
})();