我正在使用谷歌地图自动填充API自动完成地址由用户输入,一旦我完成所需的地址选择,将选定的地址字符串从谷歌地方自动填充地址传递到谷歌地图geocode api,获取详细的组件,问题是有时,即使autocomplete API返回的地址相同,地理编码API也不会返回街道号码,不确定出错的地方,下面是我正在使用的代码和两个服务的输出
这就是我从Geocode服务中检索详细地址的方法
NSString* address = [NSString stringWithFormat:@"http://maps.googleapis.com/maps/api/geocode/json?address=%@&sensor=false",completionText];
NSString* str = [address stringByReplacingOccurrencesOfString:@","
withString:@""];
str = [str stringByReplacingOccurrencesOfString:@" "
withString:@"+"];
NSURL *requestURL = [NSURL URLWithString:str];
NSURLRequest *request = [NSURLRequest requestWithURL:(requestURL)];
//response
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSError *jsonParsingError = nil;
NSDictionary *locationResults = [NSJSONSerialization JSONObjectWithData:response options:0 error:&jsonParsingError];
NSLog(@"%@",locationResults);
NSDictionary* results = [[locationResults objectForKey:@"results"] objectAtIndex:0];
NSArray* address_components = [results objectForKey:@"address_components"];
for (id addr in address_components) {
NSString *long_name = [addr valueForKey:@"long_name"];
NSString *short_name = [addr valueForKey:@"short_name"];
NSString *types = [[addr valueForKey:@"types"] objectAtIndex:0];
if ([types rangeOfString:@"street_number"].location != NSNotFound)
{
streetNum = long_name;
}
else if ([types rangeOfString:@"route"].location != NSNotFound)
{
streetName = long_name;
}
else if ([types rangeOfString:@"locality"].location != NSNotFound)
{
suburb = long_name;
}
else if ([types rangeOfString:@"administrative_area_level_1"].location != NSNotFound)
{
state = short_name;
}
else if ([types rangeOfString:@"country"].location != NSNotFound)
{
country = short_name;
}
else if ([types rangeOfString:@"postal_code"].location != NSNotFound)
{
postalCode = short_name;
}
以下是地址的示例,其中地址具有街道号,但地理编码点将其返回
{
"description" : "740 Spring Lane, Wallacedale, Victoria, Australia",
"id" : "ad2c41d2f934a30f4c5f8c4b336df8de988174d6",
"matched_substrings" : [
{
"length" : 10,
"offset" : 0
},
{
"length" : 8,
"offset" : 30
},
{
"length" : 9,
"offset" : 40
}
],
"place_id" : "EjE3NDAgU3ByaW5nIExhbmUsIFdhbGxhY2VkYWxlLCBWaWN0b3JpYSwgQXVzdHJhbGlh",
"reference" : "CkQ1AAAASPpKC9JU4XQoFf3LUYwoF_hJFRpFt5VE67NhCPs8vV9ghXvVUeKgPm-BH-Owx-zvuhHEPhJU-Y2ReK5S49AdphIQiKpvir0TegpxEAjmmNJEJhoUCt7KXyZ6LoN51qT50Unrl5ceYMU",
"terms" : [
{
"offset" : 0,
"value" : "740 Spring Lane"
},
{
"offset" : 17,
"value" : "Wallacedale"
},
{
"offset" : 30,
"value" : "Victoria"
},
{
"offset" : 40,
"value" : "Australia"
}
],
"types" : [ "route", "geocode" ]
}
以下是Google地图地理编码API针对上述自动填充地址
的输出{
results = (
{
"address_components" = (
{
"long_name" = "Spring Lane";
"short_name" = "Spring Ln";
types = (
route
);
},
{
"long_name" = Wallacedale;
"short_name" = Wallacedale;
types = (
locality,
political
);
},
{
"long_name" = Victoria;
"short_name" = VIC;
types = (
"administrative_area_level_1",
political
);
},
{
"long_name" = Australia;
"short_name" = AU;
types = (
country,
political
);
},
{
"long_name" = 3303;
"short_name" = 3303;
types = (
"postal_code"
);
}
);
"formatted_address" = "Spring Lane, Wallacedale VIC 3303, Australia";
geometry = {
bounds = {
northeast = {
lat = "-37.9132082";
lng = "141.8506572";
};
southwest = {
lat = "-37.9283224";
lng = "141.8505337";
};
};
location = {
lat = "-37.9266631";
lng = "141.8506572";
};
"location_type" = "GEOMETRIC_CENTER";
viewport = {
northeast = {
lat = "-37.9132082";
lng = "141.8519444302915";
};
southwest = {
lat = "-37.9283224";
lng = "141.8492464697085";
};
};
};
"partial_match" = 1;
"place_id" = "ChIJV74lHNPCzGoRnS8t_EDR8zk";
types = (
route
);
}
);
status = OK;
}
输出doest具有组件类型"街道号码"自动完成的地址字符串在开头就是正确的地方。这种情况发生在很多地址上,可能出错了什么?还是我需要使用其他服务? 街道号码的地址示例在
之下这是由自动填充API
返回的{
"description" : "11 Victoria Parade, Collingwood, Victoria, Australia",
"id" : "dbeebdb81c8babd166ac8f89878e88c2cba333a1",
"matched_substrings" : [
{
"length" : 18,
"offset" : 0
},
{
"length" : 9,
"offset" : 43
}
],
"place_id" : "EjQxMSBWaWN0b3JpYSBQYXJhZGUsIENvbGxpbmd3b29kLCBWaWN0b3JpYSwgQXVzdHJhbGlh",
"reference" : "CkQ4AAAATy4Z7xc3ermqeWnlxpl81pAVsBWOIl3S2JbCwwRxraLt39OJauWFnCR3NgGyruVBXfUo236mMe6CCQt5XRSYwRIQEL8JC7Qo8j3-0iD4AnJTtBoURjzgm8aHBa2g0tY4lkTKYTuVGPg",
"terms" : [
{
"offset" : 0,
"value" : "11 Victoria Parade"
},
{
"offset" : 20,
"value" : "Collingwood"
},
{
"offset" : 33,
"value" : "Victoria"
},
{
"offset" : 43,
"value" : "Australia"
}
],
"types" : [ "route", "geocode" ]
}
以下是将自动填充地址作为输入
后由Geocode服务返回的结果results = (
{
"address_components" = (
{
"long_name" = 11;
"short_name" = 11;
types = (
"street_number"
);
},
{
"long_name" = "Victoria Parade";
"short_name" = "Victoria Parade";
types = (
route
);
},
{
"long_name" = Collingwood;
"short_name" = Collingwood;
types = (
locality,
political
);
},
{
"long_name" = Victoria;
"short_name" = VIC;
types = (
"administrative_area_level_1",
political
);
},
{
"long_name" = Australia;
"short_name" = AU;
types = (
country,
political
);
},
{
"long_name" = 3066;
"short_name" = 3066;
types = (
"postal_code"
);
}
);
"formatted_address" = "11 Victoria Parade, Collingwood VIC 3066, Australia";
geometry = {
bounds = {
northeast = {
lat = "-37.8087633";
lng = "144.9830508";
};
southwest = {
lat = "-37.8087778";
lng = "144.9830487";
};
};
location = {
lat = "-37.8087633";
lng = "144.9830508";
};
"location_type" = "RANGE_INTERPOLATED";
viewport = {
northeast = {
lat = "-37.8074215697085";
lng = "144.9843987302915";
};
southwest = {
lat = "-37.8101195302915";
lng = "144.9817007697085";
};
};
};
"place_id" = EjMxMSBWaWN0b3JpYSBQYXJhZGUsIENvbGxpbmd3b29kIFZJQyAzMDY2LCBBdXN0cmFsaWE;
types = (
"street_address"
);
}
);
status = OK;
}
任何帮助都将受到高度赞赏。
答案 0 :(得分:2)
autocomplete-results在描述中得到的只是一个字符串,仅此而已(不是一组功能,如街道,邮编或者房屋编号)。服务尝试以查找确切位置(基于输入),但匹配可能是部分匹配。
当你例如输入 740 Spring Lane,Wallacedale,Victoria,Australia 在http://maps.google.com您将获得 Spring Ln,Wallacedale VIC 3303的结果,澳大利亚 强>
您也可以输入 12345 Spring Lane,Wallacedale,Victoria,Australia ,您将获得相同的结果。
除此之外:我会根据place_id
向request the place-details建议。虽然它不能给你想要的结果(房子数),结果应该更精确(绑定到特定的地方而不是地点的地址)。它还将返回该地点的更多细节。