> Yes but am splitting the data from rest of the web page data and parsing the
> xml data then reading it. if you check the same in javascript.

You make it difficult for yourself, parsing invalid XML successfully
is always going to be tricky ; but that's up to you.

Your code for 'marker' seems to assume that
   lbl= new createELable(parseFloat(xmlDoc.getElementsByTagName("LAT")
[mp].childNodes[0].nodeValue)...
is going to ignore the <LAT> element included in the <SELF> tag and
start from the <LAT> element included in the <FRIENDS> tag, but it
doesn't.
xmlDoc.getElementsByTagName("LAT") refers to all the <LAT> in xmlDoc.

This isn't a map issue at all, its about how to parse XML.

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