On Dec 18, 7:32 pm, Rossko <[email protected]> wrote: > Have a look at > -http://code.google.com/apis/maps/documentation/services.html#XML_Requ... > > in particular there's > request.send(null); > which is missing in your code I think, and is need to actually > initiate the transfer after you've set it up. > Other issues: 1. you are calling parse float on your "start" and "stop" locations (which look to me like zip codes) 2. you are running multiple GDirections calls in parallel, see: Part 17 Geocoding multiple addresses http://econym.org.uk/gmap/geomulti.htm which applies to GDirections calls as well as geocode requests. 3. There are now more "routes" in your xml file, the more routes, the more trouble you will have and the longer the page will take to load. If these are not completely independent, you can reduce the number of calls to GDirections by useing GDirections.loadFromWaypoints
-- Larry --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
