3

我正在开发一个依赖 AngularJS 的项目,我需要在其中找到世界上所有的机场并将它们与线路连接起来。

为此,我搜索了一些现有的项目,这些项目设置了角度指令以将 Google Maps API 嵌入到我的项目:即Angular-ui-maphttps://github.com/angular-ui/ui-map)、(https://github.com /nlaplante/angular-google-maps)和(https://github.com/dylanfprice/angular-gmAngular-google-mapsAngularGM

但问题是这些项目都没有谈论谷歌地图折线!

任何人都已经能够使用完整的谷歌地图功能?或者我应该创建自己的指令来实现这一点?

非常感谢。

4

1 回答 1

0

我使用了另一个名为angularjs-google-maps 的项目,它声称

向用户公开所有原始 Google Maps V3 api。

事实上,它确实为折线提供了一个指令(来自文档的示例,对我有用):

<map zoom="11" center="[40.74, -74.18]">
    <shape id="polyline" name="polyline" geodesic="true"
           stroke-color="#FF0000" stroke-opacity="1.0" stroke-weight="2"
           path="[[40.74,-74.18],[40.64,-74.10],[40.54,-74.05],[40.44,-74]]" ></shape>
</map>
于 2015-04-24T20:43:36.030 回答