我希望允许用户搜索街道名称,并将结果显示在UITableView中。目前该地区并不重要,它可以来自任何地区。
我在搜索中找不到任何相关的例子,我不知道我是否应该使用CLLocation或MKLocalSearch。
基于文档,我应该使用MKLocalSearch:虽然本地搜索和地理编码是相似的,但它们支持不同的用例。当您想要在两者之间进行转换时,请使用地理编码地图坐标和结构化地址,如地址本地址。当您想要查找一组位置时,请使用本地搜索匹配用户的输入。
但我已经尝试了这两种方法,它只给我1个结果(即使有一个NSArray返回。
这是CLGeocoder方法:
CLGeocoder *geocoding = [[CLGeocoder alloc] init];
[geocoding geocodeAddressString:theTextField.text completionHandler:^(NSArray *placemarks, NSError *error) {
if (error) {
NSLog(@"%@", error);
} else {
NSLog(@"%i", [placemarks count]);
for(CLPlacemark *myStr in placemarks) {
NSLog(@"%@", myStr);
}
}
}];
这是MKLocalSearch try:
MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init];
request.naturalLanguageQuery = theTextField.text;
request.region = self.region;
localSearch = [[MKLocalSearch alloc] initWithRequest:request];
[localSearch startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error){
if (error != nil) {
[[[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Map Error",nil)
message:[error localizedDescription]
delegate:nil
cancelButtonTitle:NSLocalizedString(@"OK",nil) otherButtonTitles:nil] show];
return;
}
if ([response.mapItems count] == 0) {
[[[UIAlertView alloc] initWithTitle:NSLocalizedString(@"No Results",nil)
message:nil
delegate:nil
cancelButtonTitle:NSLocalizedString(@"OK",nil) otherButtonTitles:nil] show];
return;
}
self.streets = response;
[self.streetsTableView reloadData];
}];
MKLocalSearch在某些情况下似乎返回多于1个响应,但这些都与地点而不是街道名称搜索有关。
这是我能得到的最接近的。这涉及到使用google places API Web Service。
注意:你可能会使用他们的Google Maps API等。我相信还有其他方法可以从各种Google api获取这些信息。
NSURL *googlePlacesURL = [NSURL URLWithString:[NSString stringWithFormat:@"https://maps.googleapis.com/maps/api/place/autocomplete/json?input=%@&location=%f,%f&sensor=true&key=API_KEY", formattedSearchText, location.coordinate.latitude,
location.coordinate.longitude]];
响应是JSON对象。将其转换为字典
NSDictionary *response = [NSJSONSerialization JSONObjectWithData:_googlePlacesResponse
options:NSJSONReadingMutableContainers error:&error];
if([[response objectForKey:@"status"] isEqualToString:@"OK"])
{
NSArray *predictions = [response objectForKey:@"predictions"];
for(NSDictionary *prediction in predictions)
{
NSArray *addressTypes = [prediction objectForKey:@"types"];
if([addressTypes containsObject:@"route"])
{
//This search result contains a street name.
//Now get the street name.
NSArray *terms = [prediction objectForKey:@"terms"];
NSDictionary *streetNameKeyValuePair = [terms objectAtIndex:0];
NSLog(@"%@",[streetNameKeyValuePair objectForKey@"value"]);
}
}
}
可能的types
似乎是
您可以用ONLY包含route
作为地址类型的predictions
填充表视图。
CLGeocoder只是返回地址格式。将此添加到代码中,并处理mapitems
的内容MKLocalSearchRequest *request = [MKLocalSearchRequest new];
request.naturalLanguageQuery = @"Pizza";
request.region = MKCoordinateRegionMake(location.coordinate, MKCoordinateSpanMake(.01, .01));
MKLocalSearch *search = [[MKLocalSearch alloc]initWithRequest:request];
[search startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error) {
NSArray *mapItems = response.mapItems;
for (MKMapItem *mapItem in mapItems) {
MKPointAnnotation *point = [MKPointAnnotation new];
point.coordinate = mapItem.placemark.coordinate;`
}
}];
返回的数组包含mapItems
,您可以遍历该数组以提取所有mapitem,如下所示:
myMatchingItems = [[NSMutableArray alloc] init];
for (MKMapItem *item in response.mapItems){
[myMatchingItems addObject:item];
}
每个mapItem.placemark.thoroughfare
包含被发现位置的Street。