> Thanks to Ralph Ames for determining the DIV style was the problem, > but I have been unable to come up with a solution. The map is > athttp://birding.sequoia-audubon.org/The content does not yet overflow > the DIV, but many more map locations will be added to this not > officially released map.
Your script is run inline inside the <div> it's trying to influence. In some browsers, this means it'll be run before that part of the DOM has been constructed. What happens if you follow the usual oft-given API guidance and put the script just before the </body> or use a page onload event? cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
