Re: Alternative to GXml?
OK, I think I'm (slowly) starting to get it. Basically on my server I
have that appproxy.asp page that returns to the requested a set of XML
markers... So I can have my mapping page do something like this:
var request = GXmlHttp.create();
request.open('GET', appproxy.asp, true);
request.onreadystatechange = function() {
if (request.readyState == 4) {
var xmlDoc = request.responseXML;
var markers =
xmlDoc.documentElement.getElementsByTagName("marker");
//do my thing
}
}
And then I'm guessing nothing prevents me from passing to the
appproxy.asp the name of the xml file I'm trying to get?
0 Comments:
Yorum Gönder
<< Home