我正在使用ui-gmap-google-map AngularJs指令和ui-gmap-marker作为标记,其中ng-repeat和click事件调用控制器中的函数。 一切似乎都有效。当我点击每个标记时,地图首次加载所有标记的标记和标记点击。但是,从第二次尝试点击任何标记都不会触发点击事件。
以下是代码段
<ui-gmap-google-map center="map.center" zoom="map.zoom">
<!--<ui-gmap-markers models="map.markers" fit="true" coords="'self'" icon="'icon'" idkey="map.marker.id" click="selectMarker()">-->
<ui-gmap-markers models="map.markers" fit="true" coords="'self'" icon="'icon'" idkey='m.id'>
<ui-gmap-marker ng-repeat="m in map.markers" coords="m" icon="m.icon" ng-click='onMarkerClicked(m.sequenceId)' idkey='m.id'>
</ui-gmap-marker>
</ui-gmap-markers>
</ui-gmap-google-map>
.....'click'和'ng-click'事件的结果相同 ..
$scope.generateMarkers = function (referencePoints) {
$scope.map.markers.length = 0;
//var bounds = new google.maps.LatLngBounds();
for (i = 0; i < referencePoints.length; i++) {
var record = referencePoints[i];
var marker = {
latitude: record.Lat,
longitude: record.Long,
title: record.RoadName,
id: record.ID,
icon: { url: '/content/images/roundcyan.png' },//pin_url(record.ID)//
sequenceId:i
};
//var position = new google.maps.LatLng(record.Lat,record.Long);
//bounds.extend(position);
$scope.map.markers.push(marker);
}
//$scope.map.fitBounds(bounds);
};
.... ..
$scope.onMarkerClicked = function (sequenceId) {
if ($scope.selectedSequenceId >=0) {
$scope.map.markers[$scope.selectedSequenceId].icon = { url: 'http://localhost:xxxxx/content/images/roundcyan.png' };
}
$scope.selectedSequenceId = sequenceId;
$scope.map.markers[sequenceId].icon = { url: 'http://localhost:xxxxx/content/images/roundcyanplus.png' };
$scope.$apply();
};
答案 0 :(得分:0)
您可能必须取消事件传播
ng-click="onMarkerClicked(); $event.stopPropagation()"