I am creating a desktop application to allow users to create and edit routes on a map. I can see how to add points to a line using the PolylineBuilder but not how to edit them by showing vertices and dragging these vertices. I guess I will have to intercept the mouse long click, create a point on the map, allow it to be dragged then update the line with the new position. Or is there a better way of doing this?
... View more