C#获取百度地图中某地方的坐标

今天要在一个C#项目中集成百度地图,看了下百度API 都是JS的,研究一下,把js代码用C#重写了一下,与大家分享一下,希望能对您有用,代码如下

class GPS
    {
        public double lng;
        public double lat;
        public GPS(double x, double y)
        {
            lng = x;
            lat = y;
        }
    }

    class BaiduGps
    {
        string[] ShopLocation = new string[] { "", "" };
        bool isReturn = false;

        public string[] GetGpsByAddress(string address)
        {
            GetSupplierLocation(address);
            if (string.IsNullOrEmpty(ShopLocation[0]))
            {
                return new string[] { "0", "0" };
            }
            GPS gps= GetGps(double.Parse(ShopLocation[0]), double.Parse(ShopLocation[1]));
            return new string[] { gps.lng.ToString("0.000000"), gps.lat.ToString("0.000000") };
        }

        private void GetSupplierLocation(string sp)
        {
            isReturn = false;
            sp = System.Web.HttpUtility.UrlEncode(sp, System.Text.Encoding.UTF8);
            MyHttp http = new MyHttp();
            http.URL = "http://api.map.baidu.com/?qt=gc&wd=" + sp + "&cn=%E5%B1%B1%E%B8%9C&ie=utf-8&oue=1&res=api&callback=BMap._rd._cbk99418";
            http.Cookie = "BAIDUID=9579A5D51BCA4AC3F202FC66B7A597C2:FG=1";
            http.End_GET += new MyHttp.WaitHandler(showContent);
            http.Not_Connect += new MyHttp.WaitHandler(CanNotConnect);
            http.Connect_Off += new MyHttp.WaitHandler(ConnectOff);
            http.GET();

            while (!isReturn)
            {
                Application.DoEvents();
                Thread.Sleep(10);
            }
        }

        private void showContent(object sender, EventArgs e)
        {
            //":{"x":"13024800.7","y":"4367020.105"},"
            sender.ToString();
            Match m = Regex.Match(sender.ToString(), "\"x\":\"(\\d|\\.)*");
            if (m.Success)
            {
                ShopLocation[0] = m.Value.Replace("\"x\":\"", "");
            }
            m = Regex.Match(sender.ToString(), "\"y\":\"(\\d|\\.)*");
            if (m.Success)
            {
                ShopLocation[1] = m.Value.Replace("\"y\":\"", "");
            }
            isReturn = true;
        }

        private void ConnectOff(object sender, EventArgs e)
        {
            MessageBox.Show("ConnectOff:" + sender.ToString());
        }

        private void CanNotConnect(object sender, EventArgs e)
        {
            MessageBox.Show("CanNotConnect:" + sender.ToString());
        }

        private GPS convertor(GPS cC, double[] cD)
        {
            if (cC == null || cD == null)
            {
                return null;
            }
            double T = cD[0] + cD[1] * Math.Abs(cC.lng);
            double cB = Math.Abs(cC.lat) / cD[9];
            double cE = cD[2] + cD[3] * cB + cD[4] * cB * cB + cD[5] * cB * cB * cB + cD[6] * cB * cB * cB * cB + cD[7] * cB * cB * cB * cB * cB + cD[8] * cB * cB * cB * cB * cB * cB;
            T *= (cC.lng < 0 ? -1 : 1);
            cE *= (cC.lat < 0 ? -1 : 1);
            return new GPS(T, cE);
        }

        private GPS GetGps(double x, double y)
        {
            GPS cC = new GPS(Math.Abs(x), Math.Abs(y));
            double[] MCBAND = new double[] { 12890594.86, 8362377.87, 5591021, 3481989.83, 1678043.12, 0 };
            double[][] MC2LL = new double[][] { 
                new double[] { 1.410526172116255e-8, 0.00000898305509648872, -1.9939833816331, 200.9824383106796, -187.2403703815547, 91.6087516669843, -23.38765649603339, 2.57121317296198, -0.03801003308653, 17337981.2 }, 
                new double[] { -7.435856389565537e-9, 0.000008983055097726239, -0.78625201886289, 96.32687599759846, -1.85204757529826, -59.36935905485877, 47.40033549296737, -16.50741931063887, 2.28786674699375, 10260144.86 }, 
                new double[] { -3.030883460898826e-8, 0.00000898305509983578, 0.30071316287616, 59.74293618442277, 7.357984074871, -25.38371002664745, 13.45380521110908, -3.29883767235584, 0.32710905363475, 6856817.37 }, 
                new double[] { -1.981981304930552e-8, 0.000008983055099779535, 0.03278182852591, 40.31678527705744, 0.65659298677277, -4.44255534477492, 0.85341911805263, 0.12923347998204, -0.04625736007561, 4482777.06 }, 
                new double[] { 3.09191371068437e-9, 0.000008983055096812155, 0.00006995724062, 23.10934304144901, -0.00023663490511, -0.6321817810242, -0.00663494467273, 0.03430082397953, -0.00466043876332, 2555164.4 }, 
                new double[] { 2.890871144776878e-9, 0.000008983055095805407, -3.068298e-8, 7.47137025468032, -0.00000353937994, -0.02145144861037, -0.00001234426596, 0.00010322952773, -0.00000323890364, 826088.5 } 
            };
            double[] cE = null;
            for (int cD = 0; cD < MCBAND.Length; cD++)
            {
                if (cC.lat >= MCBAND[cD])
                {
                    cE = MC2LL[cD];
                    break;
                }
            }
            return convertor(cC, cE);
        }
    }

 

转载于:https://www.cnblogs.com/chinaScaler/articles/BaiduGPS.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值