Thanks for the swift response Mike. I had to change the code as I was getting the whole array returned rather than the single marker:
var pointsAlongRouteString = marker.getLatLng() + ""; I can now get this string display as the marker.openInfoWindowHtml. I see it is a string with a , delimiter in the middle so will have to store each half separately. Thanks again for the help :) On Aug 27, 12:47 pm, Mike Williams <[email protected]> wrote: > GetPointsAtDistance returns an array of GLatLngs. > > To send that to a server, you'll need to convert it to a String. One way > to do that is to add "". > > var pointsAlongRouteString = pointAlongRoute + ""; > > -- > Mike Williamshttp://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
