1

我正在尝试使用谷歌地图来计算 2 点之间的距离。我有以下网址:

http://maps.google.com/maps/api/directions/xml?language=fr&origin="+parm1+"&destination="+parm2+"&sensor=false

我是使用 x++ 管理 xml 的新手,所以如何获取我的 url 返回的 xml 代码并解析它以提取我需要的数据(距离节点值)。

4

2 回答 2

1

首先,看到这个答案

然后看看这里:

http://www.axaptapedia.com/Webservice

http://www.axaptapedia.com/XML

你如何做可能部分取决于你的 AX 版本。

于 2012-04-27T06:32:07.603 回答
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);
}
于 2012-04-27T19:33:46.127 回答