感谢您的回复,我尝试了相同的地址,即 300 George Street, Sydney NSW 2000, Australia 但回复是地址中没有元素
frmAddress ="300 George Street, Sydney NSW 2000, Australia";
这是我检索街道名称、城市、郊区、国家、邮政编码的以下代码
string addUrl = "http://maps.google.com/maps/api/geocode/json?address='" + frmAddress + "'&sensor=false";
var result = new System.Net.WebClient().DownloadString(addUrl);
GoogleGeoCodeResponse test = JsonConvert.DeserializeObject<GoogleGeoCodeResponse>(result);
var response = test.results.First();
string route=null;
string locality=null;
string pstlCode = null;
for (int i = 0; i < response.address_components.Count(); i++)
{
int j = 0;
var components = response.address_components[i];
string type = components.types[j].ToString();
if (type == "route")
{
route = response.address_components[i].long_name.ToString();
}
if (type == "locality")
{
locality = response.address_components[i].long_name.ToString();
}
if (type == "postal_code")
{
pstlCode = response.address_components[i].long_name.ToString();
}
}
frmLocation = route +","+locality +","+ pstlCode;
然后我用这个代码尝试了澳大利亚新南威尔士州悉尼的乔治街,2000 年。
这是下面的回应。请您可以发布代码,以便对我有很大帮助。
{ "results" : [ {"address_components" : [
{
"long_name" : "George Street",
"short_name" : "George Street",
"types" : [ "colloquial_area", "political" ]
},
{
"long_name" : "New South Wales",
"short_name" : "NSW",
"types" : [ "administrative_area_level_1", "political" ]
},
{
"long_name" : "Australia",
"short_name" : "AU",
"types" : [ "country", "political" ]
}
],
"formatted_address" : "George Street, NSW, Australia",
"geometry" : {
"bounds" : {
"northeast" : {
"lat" : -33.9134399,
"lng" : 151.1667177
},
"southwest" : {
"lat" : -34.0059442,
"lng" : 151.0332033
}
},
"location" : {
"lat" : -33.9547504,
"lng" : 151.1053691
},
"location_type" : "APPROXIMATE",
"viewport" : {
"northeast" : {
"lat" : -33.9134399,
"lng" : 151.1667177
},
"southwest" : {
"lat" : -34.0059442,
"lng" : 151.0332033
}
}
},
"partial_match" : true,
"types" : [ "colloquial_area", "political" ]
}
],
"status" : "OK"
}