91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中怎么根據經緯度獲取地址

發布時間:2021-07-08 15:42:30 來源:億速云 閱讀:512 作者:Leah 欄目:移動開發

今天就跟大家聊聊有關C#中怎么根據經緯度獲取地址,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

#region 根據經緯度 獲取地址信息 BaiduApi

        /// <summary>
        /// 根據經緯度  獲取 地址信息
        /// </summary>
        /// <param name="lat">經度</param>
        /// <param name="lng">緯度</param>
        /// <returns></returns>
        public static BaiDuGeoCoding GeoCoder(string lat, string lng)
        {
            string url = string.Format(WeiXinConst.Baidu_GeoCoding_ApiUrl, lat, lng);

            var model = HttpClientHelper.GetResponse<BaiDuGeoCoding>(url);

            return model;
        }

        #endregion

BaiduGeoCoding是針對Api相應結果封裝的對象:

public class BaiDuGeoCoding
    {
        public int Status { get; set; }
        public Result Result { get; set; }
    }

    public class Result
    {
        public Location Location { get; set; }

        public string Formatted_Address { get; set; }

        public string Business { get; set; }

        public AddressComponent AddressComponent { get; set; }

        public string CityCode { get; set; }
    }

    public class AddressComponent
    {
        /// <summary>
        /// 省份
        /// </summary>
        public string Province { get; set; }
        /// <summary>
        /// 城市名
        /// </summary>
        public string City { get; set; }

        /// <summary>
        /// 區縣名
        /// </summary>
        public string District { get; set; }

        /// <summary>
        /// 街道名
        /// </summary>
        public string Street { get; set; }

        public string Street_number { get; set; }

    }

    public class Location
    {
        public string Lng { get; set; }
        public string Lat { get; set; }
    }

調用:

            //需配置 WeiXineConst的BaiduAk
            string lat = "31.1430"; //經度
            string lng = "121.2943";// 緯度
            var model = WeiXinHelper.GeoCoder(lat, lng);

看完上述內容,你們對C#中怎么根據經緯度獲取地址有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昌平区| 固原市| 和硕县| 益阳市| 丹巴县| 昂仁县| 吉首市| 茂名市| 湖北省| 林口县| 延庆县| 揭东县| 普兰店市| 福海县| 临湘市| 济阳县| 山西省| 启东市| 黑水县| 东平县| 新民市| 云霄县| 塔城市| 阜南县| 兴业县| 始兴县| 桂林市| 扶沟县| 辰溪县| 嘉黎县| 镇远县| 新丰县| 松溪县| 汝阳县| 岢岚县| 班玛县| 息烽县| 烟台市| 油尖旺区| 宁陕县| 南汇区|