我正在尝试使用Google地图来计算2点之间的距离。我有以下网址:
http://maps.google.com/maps/api/directions/xml?language=fr&origin="+parm1+"&destination="+parm2+"&sensor=false
我是一个用x ++管理xml的新手,所以如何获取我的url返回的xml代码并解析它以提取我需要的数据(距离节点值)。
答案 0 :(得分:1)
首先,请参阅此answer。
然后看看这里:
http://www.axaptapedia.com/Webservice
http://www.axaptapedia.com/XML
如何操作可能部分取决于您的AX版本。
答案 1 :(得分:0)
我正在玩Jan发布的两个链接,并得到了一些你应该可以使用的东西。我注意到“node.hasChildNodes()”有些奇怪,它会说有一个孩子,当没有孩子时,但它有可用的文本。看看你是否可以使用它。
static void XML_WebService_CodeGoogle(Args _args)
{
System.Net.WebClient webClient = new System.Net.WebClient();
str google = "http://maps.google.com/maps/api/directions/xml?language=en&origin=85251&destination=46220&sensor=false";
str retVal = webClient.DownloadString(google);
XMLDocument doc=XMLDocument::newXml(retVal);
XmlNamedNodemap attributes;
XmlElement root = doc.root();
XmlNode node = root.firstChild();
str numOfSpaces(int _depth)
{
str spc;
int n;
;
for (n=0; n<=_depth; n++)
spc+=' ';
return spc;
}
void dig(XmlNode _node, int _depth = 0)
{
XmlNode sib;
;
if (_node == null)
return;
if (_node.hasChildNodes())
info(strfmt("%1%2", numOfSpaces(_depth), _node.name()));
if (_node.hasChildNodes())
dig(_node.firstChild(), (_depth+1));
else
info(strfmt("%1[%2]", numOfSpaces(_depth), _node.innerText()));
sib = _node.nextSibling();
if (sib)
dig(sib);
}
;
dig(node);
}