当我刷新页面时,我通常面临传单标记的问题,标记是可点击的,但是当我来自另一个页面标记不可点击时,我尝试了所有的事情,但没有找到任何解决方案。
JAVASCRIPT:
angular.extend($scope, {
center: {
lat: 51.505,
lng: -0.09,
zoom: 8
},
markers: {},
});
mapService.getLocation(function(location) {
$scope.center = {
lat: location.lat,
lng: location.long,
zoom: 12
};
$scope.$digest($scope.center);
mapService.getMarkers(
new google.maps.LatLng(location.lat, location.long),
document.getElementById('map'), ['school'],
function(results) {
results.forEach(function(marker) {
var __location = marker.geometry.location.toJSON();
$scope.markers[marker.id] = {
lat: __location.lat,
lng: __location.lng,
message: marker.name,
focus: false
}
});
$scope.$digest($scope.markers);
}
)
});
HTML:
<leaflet
width="100%"
markers="markers"
lf-center="center">
[注意] 我正在使用传单(版本:“0.7.7”)和角度传单指令(版本:“0.10.0”)。