Google Maps V3:多边形顶点

时间:2011-11-18 19:29:05

标签: google-maps-api-3 polygon

有人知道如何获得使用新绘图库构建的多边形顶点数组吗? http://gmaps-samples-v3.googlecode.com/svn/trunk/drawing/drawing-tools.html

我尝试使用newShape.getPath().getArray()[0].lat(),但这似乎是空的

1 个答案:

答案 0 :(得分:7)

我对newShape.getPath().getArray()[0].lat()没有任何问题。如果newShape多边形对象不为null并且未从路径中删除顶点,则它应该有效。

你也可以尝试newShape.getPath().getAt(0).lat(),它也应该有用。

您的代码中必定存在其他一些问题。