MKLocalSearch不像Apple Maps搜索一样工作?

时间:2015-11-16 17:01:03

标签: ios mapkit mklocalsearch

我创建了一个MapKit并尝试使用MKLocalSearch。与Apple Maps相比,我注意到的一件事是mklocalsearch仅限于10个结果。那么Apple Maps如何在搜索栏下显示15条建议?

好的,举个例子。我试图找到"巴塞罗那。"在Apple Maps中,只需写完" barc"它将在整个打字巴塞罗那留在建议清单上。 现在在我自己的地图视图中,我实际上必须输入完整的巴塞罗那才能得到建议:西班牙,巴塞罗那。在我的路上,我得到了其他的建议,但没有像西班牙,巴塞罗那,也不像苹果地图。

有关如何使其工作的任何见解以及为什么Apple Maps的工作方式不同(规格15个结果与10个mklocalseach)

以下是textField Changes:

上调用的代码
- (IBAction)searchFieldChanged:(UITextField *)sender {
if(self.locationTextfield.text.length>0)
    self.tableView.hidden = NO;
else
    self.tableView.hidden = YES;

NSString *query = self.locationTextfield.text;
// Create and initialize a search request object.
MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init];
request.naturalLanguageQuery = query;
request.region = self.mapsView.region;//we dont want region-specific search results!
//request.region = MKCoordinateRegionMakeWithDistance(self.mapsView.userLocation.location.coordinate,40000000, 15000000);

// Create and initialize a search object.
MKLocalSearch *search = [[MKLocalSearch alloc] initWithRequest:request];

// Start the search and display the results as annotations on the map.
[search startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error)
 {
     [placeMarks removeAllObjects];
     NSLog(@"p-count: %lu", response.mapItems.count);
     for (MKMapItem *item in response.mapItems) {
         [placeMarks addObject:item.placemark];
         self.tempPlacemark = item.placemark;
         NSLog(@"placemark: %@", item.placemark);//.location.coordinate.latitude);

     }
     //if(placemarks.count==0)
     // appDelegate.staticPlacemark = nil;


     //[self.mapsView removeAnnotations:[self.mapsView annotations]];
     //[self.mapsView showAnnotations:placemarks animated:NO];
     [self.tableView reloadData];
 }];

}

1 个答案:

答案 0 :(得分:0)

您所做的是使用MKLocalSearchRequest的MKLocalSearch。 Apple的macOS和iOS地图应用程序使用较新的MKLocalSearchCompleter类来获取自动完成建议。这些建议用于实时搜索并显示在UITableView中。当用户选择一个条目时,该建议用于初始化MKLocalSearchRequest以获取有关此位置的详细信息。