I am using GWT google-maps. I know how to draw a polyline and then edit it by calling setEditingEndabled(true). I can change a single point by using mouse, manually. However, if I want to change a point/vertex programmatically, What should I do? polyline.insertVertex() will introduce new vertex. What I need is moving the current vertex around.

Thanks.

link|improve this question

39% accept rate
feedback

1 Answer

Try something like:

polyline.deleteVertex(index);
polyline.insertVertex(index, newVertex);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.