> Added in the code for the custom icon to both pages and it made no
> difference.. also added in code to split the downloading of tiles over
> 5 domains to make it faster Larry.

GDownloadUrl is asynchronous.  When you call it, it sends the request
for your XML.
Javascript execution does not stop, and your code carries on to
eventually add empty marker arrays to MarkerManager.
Much later on, your XML data returns and the arrays are populated, but
these are never added to MarkerManager because your initialize()
function finished long ago.
You must use asynchronous data within its callback function.

--

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