I want to draw Polylines with the Google Maps JavaScript API. Is there a tool that will help me get the latitude and longitude points by just clicking on the map, then exporting an array of lat-long pairs?

I imagine something like the personalized maps service (My Places) in Google Maps where you can click-snap on the roads to specify your own driving directions. I'd like to take that one step further. That is, to export an array of lat-long pairs that specify the roads traveled.

link|improve this question

79% accept rate
feedback

1 Answer

You can use the Drawing Tools library: http://code.google.com/apis/maps/documentation/javascript/overlays.html#drawing_tools which will give you an encoded polyline. You can use that to draw a line, or you can decode it to get the specific points using the geometry library: http://code.google.com/apis/maps/documentation/javascript/geometry.html

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.