传单指令 - 单击事件仅工作一次

时间:2017-01-15 13:49:35

标签: javascript angularjs angular-leaflet-directive

代码:

$scope.$on('leafletDirectiveMap.click', function(event, locationEvent){
    $scope.newLocation = new Location();
    $scope.newLocation.lat = locationEvent.leafletEvent.latlng.lat;
    $scope.newLocation.lng = locationEvent.leafletEvent.latlng.lng;
    $scope.modal.show();
  });

上面的代码显示弹出窗口,当前的lat&很长的用户。 但是click事件只能工作一次,直到下次重新加载。

0 个答案:

没有答案