中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

温州市| 水城县| 武冈市| 开鲁县| 辽源市| 饶阳县| 石林| 香河县| 开原市| 镇远县| 泸州市| 福清市| 绍兴市| 吴堡县| 苍山县| 镇原县| 凤阳县| 阳朔县| 博野县| 芜湖市| 清远市| 罗定市| 乡宁县| 浦东新区| 东平县| 陇川县| 石林| 宾川县| 丹巴县| 通城县| 平阳县| 呼图壁县| 丰顺县| 大城县| 六枝特区| 厦门市| 高碑店市| 金平| 高安市| 湾仔区| 准格尔旗|