• 海王...O2O获取订单地址计算经纬度的方法


            /// <summary>
            /// 获取订单地址经纬度的方法  API
            /// </summary>
            /// <param name="address">订单地址</param>
            /// <param name="city">市</param>
            /// <returns></returns>

         public static string send(string address, string city)
            {
                //引入对应的命名空间...
                System.Net.HttpWebRequest request;
                request = (System.Net.HttpWebRequest)WebRequest.Create("http://api.map.baidu.com/geocoder?address=" + System.Web.HttpUtility.UrlEncode(address) + "&output=xml&key=6730e17525eb552282f7f08bcd9bb34d&city=" + System.Web.HttpUtility.UrlEncode(city));
                request.Method = "get";
                // request.Timeout = 10000;
                System.Net.HttpWebResponse response;
                response = (System.Net.HttpWebResponse)request.GetResponse();
                System.IO.Stream s; s = response.GetResponseStream();
                XmlTextReader Reader = new XmlTextReader(s);
                Reader.MoveToContent();
                string strValue = Reader.ReadInnerXml();
                strValue = strValue.Replace("&lt;", "<");
                strValue = strValue.Replace("&gt;", ">");
                Reader.Close();
                return strValue;
            }

    public   void    GetBestBranch()

     {

           //列:调用

          string xmlContent = string.Empty;

          xmlContent=类名.send(地址, 市);

          xml.LoadXml(xmlContent);

        //经度  和   纬度

        double   pointx = double.Parse((xml.LastChild.LastChild.SelectSingleNode("location")).SelectSingleNode("lat").InnerText);
        double   pointy = double.Parse((xml.LastChild.LastChild.SelectSingleNode("location")).SelectSingleNode("lng").InnerText);

    }

  • 相关阅读:
    WebDriverException: Message: 'geckodriver' executable needs to be in PATH.
    Django安装与使用
    初识Django
    python学习之xlrd的使用
    python 学习笔记
    根据当前日期生成一个唯一标识的名称
    用Python生成组织机构代码,附源码
    IO流基础
    多线程
    日期时间类
  • 原文地址:https://www.cnblogs.com/TanYong/p/5105210.html
Copyright © 2020-2023  润新知