gpt4 book ai didi

ios - MKLocalSearch 找不到附近的所有餐馆

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:41:07 29 4
gpt4 key购买 nike

我在 mkmapview 的某个区域内实现了 MKLocalSearch,它返回该区域内的一系列餐馆。通过研究,只显示了 10 家餐厅。有没有办法让 MKLocalSearch 可以返回一个地区内超过 10 家餐厅?这是代码,

MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc]init];
request.naturalLanguageQuery = @"restaurant";
request.region = midRegion;

MKLocalSearch *localSearch = [[MKLocalSearch alloc]initWithRequest:request];
[localSearch startWithCompletionHandler:^(MKLocalSearchResponse *response, NSError *error) {
NSMutableArray *annotations = [NSMutableArray array];
[response.mapItems enumerateObjectsUsingBlock:^(MKMapItem *item, NSUInteger idx, BOOL *stop){
CustomAnnotation *annotation = [[CustomAnnotation alloc] initWithPlacemark:item.placemark];
annotation.title = item.name;
annotation.subtitle = item.placemark.addressDictionary[(NSString *)kABPersonAddressStreetKey];
annotation.phone = item.phoneNumber;

[annotations addObject:annotation];
}];

[self.mapView addAnnotations:annotations];

}];
}

最佳答案

因此,虽然我已经有一段时间没有问过这个问题了,但我仍然想解决这个问题,因为我认为我应该这样做。在 stackoverflow 和 apple developer forums 上偶然发现各种链接后,内置的 MKLocalSearch 方法似乎仅限于返回最多 10 个结果。而 Google Maps API 最多可以返回 60 个结果。因此,恐怕我的问题的答案是

,您不能让 MKLocalSearch 方法返回与特定 naturalLanguageQuery 关键字关联的区域内超过 10 个位置。

关于ios - MKLocalSearch 找不到附近的所有餐馆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29322394/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com