使用Json.Net解析Google Maps地理编码json响应到对象

使用Json.Net解析Google Maps地理编码json响应到对象,第1张

使用Json.Net解析Google Maps地理编码json响应到对象

我尝试了一下,做了一个简单的测试,并成功了(增加了结果和其他):

public class GoogleGeoCodeResponse{    public string status { get; set; }    public results[] results { get; set; }}public class results{    public string formatted_address { get; set; }    public geometry geometry { get; set; }    public string[] types { get; set; }    public address_component[] address_components { get; set; }}public class geometry{    public string location_type { get; set; }    public location location { get; set; }}public class location{    public string lat { get; set; }    public string lng { get; set; }}public class address_component{    public string long_name { get; set; }    public string short_name { get; set; }    public string[] types { get; set; }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5010620.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存