On Mar 20, 5:29 am, schickb <[email protected]> wrote: > Well deleteVertex doesn't work as expected. If you have a two point > polyline, attempting to delete one of those vertexes just fails.
Deleting a vertex from a two-point line would result in its not being a line any more, so one could argue that's reasonable. > Is this know or should I report bugs? I am using v2.x which I believe > is now 2.150. I would suggest requesting an enhancement as you describe (allowing a vertex to be moved). You can do that here: http://code.google.com/p/gmaps-api-issues/issues/list BUT GPolyline.getVertex(n) returns a GLatLng object, so setLatLng() wouldn't be available. You might be more successful requesting GPolyline.setVertex(n) = new GLatLng(...) as that is an addition to existing methods and is more compatible with the existing getVertex and other similar pairs. Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
