On Mar 29, 9:51 am, carlosrodriguez <[email protected]> wrote: > I have the following script:http://anthonyscoalfiredpizza.com/js/map.js > running on this pagehttp://anthonyscoalfiredpizza.com/locations.php > which works very well on Firefox, Safari and Chrome but not on IE. If > I comment out the Gxml.parse then the map load without problems but no > markers, and no errors, are shown. As soon as I bring it back, markers > are shown on every other browser except the IE family. > > I've tried several suggestions, adding a timeout to IE using an actual > xml file instead of a PHP, changing my security settings etc with no > luck.
It "works" in IE6 for me, but the data is bad. You have entries in your xml which don't contain valid latitude and longitude values, for example: <marker name="Carle+Place" state="NY" address="135+Old+Country+Road%2C +11514%2C+Carle+Place%2C+NY+" lat="" lon="" phone="" type="noactive" / > IE tends to handle things like this differently than standards compliant browsers. -- Larry -- 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.
