There's a bit of a clue in the Javascript error
"useless setTimeout call (missing quotes around argument?)
What's currently happening is that
var marker = setTimeout(createMarker (point,label,html,icon,comment,
admin,state,cost,id,photo,is), 10);
Evaluates the createMarker(...) call immediately, and attempts to store
the String that it returns to identify what is to be executed in 10
milliseconds. Calling your createMarker() returns void, but has the side
effect of plotting the first marker.
--
http://econym.org.uk/gmap
The Blackpool Community Church Javascript Team
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---