1
我有一個標記正常工作$ scope.mapCreated。現在我試圖在用戶單擊$ scope.centerOnMe()時顯示另一個標記,但只顯示當前位置,而沒有標記。AngularJS +谷歌地圖不顯示標記
我必須使用this example還是有最簡單的解決方案?
控制器
.controller('mapCtrl', ['$scope', '$state', '$ionicLoading', function($scope, $state, $ionicLoading){
$scope.mapCreated = function(map) {
var latlngPlace = new google.maps.LatLng(-27.4264356, -51.7838787);
var marker = new google.maps.Marker({
map: map,
position: latlngPlace
});
$scope.map = map;
};
$scope.centerOnMe = function() {
console.log("Centering");
if (!$scope.map) {
return;
}
$scope.loading = $ionicLoading.show({
content: 'Wait...',
showBackdrop: false
});
navigator.geolocation.getCurrentPosition(function (pos) {
console.log('Got pos', pos);
$scope.map.setCenter(new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude));
var myPlace = new google.maps.LatLng(pos.coords.latitude, pos.coords.longitude);
var marker2 = new google.maps.Marker({
position: myPlace
});
$ionicLoading.hide();
}, function (error) {
console.log('Error' + error.message)
});
};
}])
directives.js
angular.module('app.directives', [])
.directive('map', function(){
return {
restrict: 'E',
scope: {
onCreate: '&'
},
link: function ($scope, $element, $attr) {
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(-27.426102, -51.784999),
zoom: 16,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map($element[0], mapOptions);
$scope.onCreate({map: map});
// Stop the side bar from dragging when mousedown/tapdown on the map
google.maps.event.addDomListener($element[0], 'mousedown', function (e) {
e.preventDefault();
return false;
});
}
if (document.readyState === "complete") {
initialize();
} else {
google.maps.event.addDomListener(window, 'load', initialize);
}
}
}
});
map.html
<ion-view title="Map" id="page9" style="background-color:#FFFFFF;">
<ion-content>
<map on-create="mapCreated(map)"></map>
</ion-content>
<ion-footer-bar class="bar-stable bar-calm">
<a ng-click="centerOnMe()" class="button button-icon icon ion-navigate">FindMe</a>
</ion-footer-bar>
</ion-view>
它沒有以這種方式工作,但用於顯示地圖的一部分要歸功於:$ scope.map –