On Mar 24, 2:39 pm, FredW <[email protected]> wrote:
> Example map:http://www.dhsbikeshop.com/membermap.htm
> XML file:http://www.dhsbikeshop.com/members.xml

I have no idea why it works in Safari, or what the error is in
Firefox, because I don't think the XML should work at all. Try getting
the XML in a browser.

You have elements
<markers>
  <marker>
  <marker>
</markers>
which means that each marker element is nested in the previous one. I
suspect you meant to terminate them with />:
<markers>
  <marker/>
  <marker></marker>
</markers>

The IE error indicates that the XML cannot be parsed, which accords
with its content.

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
-~----------~----~----~----~------~----~------~--~---

Reply via email to