Your loop fetching multiple XML files bangs off six requests, all
called 'request'.
Some time later, the replies may come back in some random order, one
may arrive in the middle of the previous one being processed, etc.
Once the XML files are in the browser's cache, things will probably
work a bit quicker, maybe even work properly.

You could modify your code to send six different requests.
Or to fetch one at a time, triggering the next request when the
previous one has been processed.
That could be managed by having an array of URLs, and pop off one at a
time until exhausted.

-- 
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.

Reply via email to