angular-google-地图不更新标记

angular-google-maps not updating markers

我正在使用库 angular-google-maps 但是当我从标记数组中推送或删除标记时它似乎没有更新标记,如下面的 plnker 中所示。控制台显示已添加新标记,但地图上并未反映出来。

http://plnkr.co/edit/Si5tANvbU8Fro14OC4ny?p=preview

$scope.addPlace = function() {

       $scope.places.push({
        id: 3,
        latitude: 42,
        longitude: -79
      });

      console.log($scope.places);

  };

您需要在 ui-gmap-markers 指令中将 modelsbyref 设置为 false

 <ui-gmap-markers models="places" coords="'self'" modelsbyref="false">  

   </ui-gmap-markers>