Hi,

my Problem:
In FF all markers are shown, in IE the map is there but there is no
single marker. IE tells me that the problem is in Line ... "
'documentElement' is Null or no object" and there stands:  for (var i
= 0; i < markers.length; i++) {

I think the problem is that the IE can't read the xml-file, which FF
can. The code I used to read the xml-file is:

var request = GXmlHttp.create();
        request.open("GET", "data.xml", true);
        request.onreadystatechange = function() {
                if (request.readyState == 4) {
                        var xmlDoc = request.responseXML;
                        // obtain the array of markers and loop through it
                        var markers = 
xmlDoc.documentElement.getElementsByTagName
("marker");


it would be sooo great if anybody could help me.

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