zoukankan      html  css  js  c++  java
  • 海王...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);

    }

  • 相关阅读:
    Hibernate中日期(Date)类型 与oracle中日期的映射处理
    mssql注入经常使用的命令
    EL表达式遍历Map集合
    TomCat项目空间映射 配置
    JSP探针虚拟主机JSP环境检测工具
    什么是RSS
    大U盘容量的烦恼:copy 4G 以上单个文件时总是显示U盘已满
    Java初体验之bool
    何为Cookie
    转测试网站各项性能的31 个免费在线工具
  • 原文地址:https://www.cnblogs.com/TanYong/p/5105210.html
Copyright © 2011-2022 走看看