今天就跟大家聊聊有關(guān)C#中怎么根據(jù)經(jīng)緯度獲取地址,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
舟曲ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)的ssl證書(shū)銷(xiāo)售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書(shū)合作)期待與您的合作!#region 根據(jù)經(jīng)緯度 獲取地址信息 BaiduApi ////// 根據(jù)經(jīng)緯度 獲取 地址信息 /// /// 經(jīng)度 /// 緯度 ///public static BaiDuGeoCoding GeoCoder(string lat, string lng) { string url = string.Format(WeiXinConst.Baidu_GeoCoding_ApiUrl, lat, lng); var model = HttpClientHelper.GetResponse (url); return model; } #endregion
BaiduGeoCoding是針對(duì)Api相應(yīng)結(jié)果封裝的對(duì)象:
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 { ////// 省份 /// public string Province { get; set; } ////// 城市名 /// public string City { get; set; } ////// 區(qū)縣名 /// public string District { get; set; } ////// 街道名 /// public string Street { get; set; } public string Street_number { get; set; } } public class Location { public string Lng { get; set; } public string Lat { get; set; } }
調(diào)用:
//需配置 WeiXineConst的BaiduAk string lat = "31.1430"; //經(jīng)度 string lng = "121.2943";// 緯度 var model = WeiXinHelper.GeoCoder(lat, lng);
看完上述內(nèi)容,你們對(duì)C#中怎么根據(jù)經(jīng)緯度獲取地址有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。