On Sep 29, 7:20 pm, Ahunter61 <[EMAIL PROTECTED]> wrote: > Thanks Marcelo, I Fixed the head and body tags But the Upland Birds > Category still won't work
First, as Rossko said, you still have multiple heads and bodies. Second, associative arrays are not part of javascript. It is incorrect to index arrays with strings, and this is really what's causing the problem. GMarkers in the current version of the API, have a property called 'u', so your associative array is conflicting with the GMarker properties. That's why, when you change 'u' tosomething else, it works. It also works if you change the version of the API to something old. I tried 2.89 and that works, because GMarkers did not have a property called 'u' then. So, either restructure your page to use properly indexed arrays, or change the version to something like 2.89, or at the very least, use longer names for your associative array's keys to avoid conflicts. -- Marcelo - http://maps.forum.nu -- --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
