Rossko,

Thank you for your help with pointing out the MarkerManager. I will
learn more about that.

As for the recursive loop, i am still lost, I understand the concept
of setting up a recursive loop but, when I try to execute it doesn't
work. For example this recursive function should act as a simple
counter, but I can't get it to move past one.

<script type="text/javascript">
testFunction(0);
function testFunction(i) {
var b = i+1;
document.write(b);
setTimeout("testFunction(b)", 3000);
}
</script>

Like i said, i am pretty much a JS noob, but I have a lot of
experience in server side scripting, any help you can offer would be
great...

Joe Hall



On Oct 21, 7:18 pm, Rossko <[email protected]> wrote:
> > But, I am not using the addOverlay at all.
>
> Well okay, MarkerManager is doing that bit for you.  In which case
> you'll need to add each of your markers to the manager in turn, and
> refresh for each one.
>
> > I am also having some
> > trouble figuring out how to call a recursive function every three
> > seconds.
>
> http://javascript.about.com/library/blstvsi.htm
--~--~---------~--~----~------------~-------~--~----~
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