有人知道如何获得使用新绘图库构建的多边形顶点数组吗? http://gmaps-samples-v3.googlecode.com/svn/trunk/drawing/drawing-tools.html
我尝试使用newShape.getPath().getArray()[0].lat()
,但这似乎是空的
答案 0 :(得分:7)
我对newShape.getPath().getArray()[0].lat()
没有任何问题。如果newShape
多边形对象不为null并且未从路径中删除顶点,则它应该有效。
你也可以尝试newShape.getPath().getAt(0).lat()
,它也应该有用。
您的代码中必定存在其他一些问题。