On Jan 4, 4:24 pm, donjamessingleton <[email protected]> wrote: > > Firefox is what I am using, and I recognize I have two createMarkers.
Having two functions called the same is invalid Javascript and will definitely cause unpredictable results. > I got the first part to work with the Earth icons, and did not want to > lose it, and could not figure out how to comment it out > <!-- > --> > Did not work to comment out a block of code, HTML comments don't comment out Javascript *inside* script tags. They should work outside (because the entire <script> block is commented out). <!-- is valid inside a script tag, but it's a compatibility thing to comment out stuff for browsers which don't understand <script>. A multiline comment in Javascript uses /* ... */ > I finally made a test2 (not uploaded yet) and deleted the google earth > stuff from it and even moved > var baseIcon = new GIcon(G_DEFAULT_ICON, "http:// > maps.google.com/mapfiles/ms/icons/green.png"); Perhaps you could upload that version then... Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
