ホームページ > 記事 > WeChat アプレット > C# WeChat 開発: 緯度と経度に基づいて住所を取得する
開発プロセス中に、ユーザーの地理的位置に応じてさまざまな地域で商品を表示する必要性が発生しました。
ここで WeChat が使用されます: ユーザーの地理的位置を取得する機能 (5 秒ごとまたは返信入力時に報告されます)、WeChat によってプッシュされた経度と緯度に基づいて実際の住所に変換します。 Baidu Map API が使用されます。こちら (使用したい場合は、まず Baidu ak を申請してください)。
追記: WeChat のこの機能は非常に不安定で、信頼性が低く、プッシュされないことがよくあります。 。 。 (手動測位は後で追加されました。Baidu Map Web 測位コンポーネントは広告ではなく非常に優れています! 0.0)
#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; } }
Call:
//需配置 WeiXineConst的BaiduAk string lat = "31.1430"; //经度 string lng = "121.2943";// 纬度 var model = WeiXinHelper.GeoCoder(lat, lng);
の対応する結果をカプセル化したオブジェクトです。 WeChat 開発: 緯度と経度に基づいて取得する 住所関連の記事については、PHP 中国語 Web サイトに注目してください。