ngmap中的optimizeWaypoints选项

时间:2016-08-31 10:26:04

标签: angularjs node.js meanjs ng-map

您好我正在使用angularjs和ngmap我希望以优化的方式显示通过不同点的方向,即导致最短路径的方向

我正在使用选项优化方式这样做,但这似乎不起作用,我查看ngmap的文档我还没有找到任何关于此的参考

请找到代码:

<div map-lazy-load="https://maps.google.com/maps/api/js">
  <ng-map  center="current-position">
        <directions
              draggable="true"
              panel="directions-panel"
              travel-mode="DRIVING"
              origin={{adresse1}}
              waypoints={{likedLabels}}
              optimizeWaypoints="true"
              destination={{adresse2}}>
            </directions>
  </ng-map>

linkedLabels是一个如下所示的数组:

[
  {
    "location": {
      "lat": 50.62924999999999,
      "lng": 3.057256000000052
    }
  },
  {
    "location": {
      "lat": 48.85661400000001,
      "lng": 2.3522219000000177
    }
  },
  {
    "location": {
      "lat": 48.117266,
      "lng": -1.6777925999999752
    }
  }
]

1 个答案:

答案 0 :(得分:0)

你可能现在已经想到了它,但由于它仍然不在文档中 - 你可以像这样使用它:

<directions
    ...
    optimize-waypoints="true"
</directions>