Wasn't it RoyHB who wrote: > >Without seeing your own page it's hard to help but... > >if you look at the example you will see that the map is drawn within >http://gmaps-samples.googlecode.com/svn/trunk/markerhider/markerhider.htm > >Within that file, near the bottom, the checkboxes are defined. >Each checkbox has the CHECKED parameter near the end of the line. > >If you remove that parameter then the checkboxes will default to >unchecked.
In some browsers, the CHECKED attribute is ignored when the page is reloaded. I always use document.getElementById(...).checked = false; calls to switch back to the initial conditions that I want to impose, and achieve consistent behaviour across all supported browsers. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
