> > What is this line supposed to do?
> >         for (var i=0; i><gmarkers.length; i++)

> with that line he loops through every marker

No it doesn't. It will fail. There is a syntax problem on the line (as
displayed in message)

  i >< gmarkers.length

"i" can't be BOTH GREATER THAN and LESS THAN "gmarkers.length"

You want...

    for ( var i = 0; i < gmarkers.length; i++ )

Assuming what "[EMAIL PROTECTED]" typed in his message is what you
have in your code.

Walter
--~--~---------~--~----~------------~-------~--~----~
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