- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在编写一个使用 MapKit 的应用程序。我已经实现了 MKLocalSearch,并且得到了一组 MKMapItem。但是我想知道是否有可能获得每个项目的类别。例如,在 map 应用程序中,商店、酒店、火车站等显示不同的图标。此外,如果您查看地标。您会得到一个类别标签,例如 Grocery。作为开发人员,我可以访问 map 项的信息吗?如果是这样,我想知道怎么做。
谢谢
最佳答案
是的,您可以获得此信息。有关搜索位置的信息详细信息,请参见以下方法。
恐怕您只能从 MKPlacemark
获取地址详细信息。
现在您要做的是,从 MKPlacemark
获取地址详细信息,并且您需要借助任何开源 API 来帮助您将地址分类到某些标签/注释中。
一个好的 API 是 Mapbox ,可惜是付费的。
因此,您可以从第三方 API 进行神奇的搜索。我没有搜索 API/WebService 的种类,但它应该在那里。
objective-c 代码:
- (void) searchForPlace:(NSString *) keyWord {
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
MKLocalSearchRequest *request = [[MKLocalSearchRequest alloc] init];
request.naturalLanguageQuery = keyWord; // @"restaurant"
MKCoordinateSpan span = MKCoordinateSpanMake(.1, .1);
CLLocationCoordinate2D location = self.mapView.centerCoordinate;
request.region = MKCoordinateRegionMake(location, span);
MKLocalSearch *search = [[MKLocalSearch alloc] initWithRequest:request];
[search startWithCompletionHandler:
^(MKLocalSearchResponse *response, NSError *error) {
[self.txtSearch setEnabled:YES];
[self removeMapOverlay];
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
if (!error) {
// Result found
@try {
if (response.mapItems && [response.mapItems count] > 0) {
for (MKMapItem *item in response.mapItems) {
MKPlacemark *placeMark = item.placemark;
// Address details
NSDictionary *address = placeMark.addressDictionary;
NSString *titleString = @"";
NSString *subtitleString = @"";
NSString *name = @"";
NSString *Thoroughfare = @"";
NSString *State = @"";
NSString *City = @"";
NSString *Country = @"";
name = [address objectForKey:@"Name"] ? [address objectForKey:@"Name"] : @"";
Thoroughfare = [address objectForKey:@"Thoroughfare"] ? [address objectForKey:@"Thoroughfare"] : @"";
State = [address objectForKey:@"State"] ? [address objectForKey:@"State"] : @"";
City = [address objectForKey:@"City"] ? [address objectForKey:@"City"] : @"";
Country = [address objectForKey:@"Country"] ? [address objectForKey:@"Country"] : @"";
titleString = [NSString stringWithFormat:@"%@ %@", name, Thoroughfare];
subtitleString = [NSString stringWithFormat:@"%@ %@ %@", State, City, Country];
CustomAnnotation *annotation = [[CustomAnnotation alloc] initWithTitle:titleString subTitle:subtitleString detailURL:item.url location:placeMark.location.coordinate];
[self.mapView addAnnotation:annotation];
}
[self mapView:self.mapView regionDidChangeAnimated:YES];
}
}
@catch (NSException *exception) {
NSLog(@"Exception :%@",exception.description);
}
} else {
NSLog(@"No result found.");
}
}];
}
Swift 代码:
func searchForPlace(keyword: String) {
UIApplication.sharedApplication().networkActivityIndicatorVisible = true
var requset = MKLocalSearchRequest()
requset.naturalLanguageQuery = keyword
let span = MKCoordinateSpanMake(0.1, 0.1)
let region = MKCoordinateRegion(center: self.mapView.centerCoordinate, span: span)
var search = MKLocalSearch(request: requset)
search.startWithCompletionHandler { (var response: MKLocalSearchResponse!, var error: NSError!) -> Void in
UIApplication.sharedApplication().networkActivityIndicatorVisible = false
if (error != nil) {
// Result found
if (response.mapItems != nil && response.mapItems.count > 0) {
for item: MKMapItem! in response.mapItems as [MKMapItem] {
var placeMark = item.placemark as MKPlacemark!
// Address details...
var address = placeMark.addressDictionary as NSDictionary!
var titleString: String!
var subtitleString: String!
var name: String!
var Thoroughfare: String!
var State: String!
var City: String!
var Country: String!
var emptyString: String! = " "
name = (address.objectForKey("name") != nil ? address.objectForKey("name") : emptyString) as String
Thoroughfare = (address.objectForKey("Thoroughfare") != nil ? address.objectForKey("Thoroughfare") : emptyString) as String
State = (address.objectForKey("State") != nil ? address.objectForKey("State") : emptyString) as String
City = (address.objectForKey("City") != nil ? address.objectForKey("City") : emptyString) as String
Country = (address.objectForKey("Country") != nil ? address.objectForKey("Country") : emptyString) as String
titleString = String(format: "%@ %@", name, Thoroughfare)
subtitleString = String(format: "%@ %@ %@", State, City, Country)
var customAnnotation = CustomAnnotation(coordinate: placeMark.location.coordinate, title: titleString, subtitle: subtitleString, detailURL: item.url)
self.mapView.addAnnotation(customAnnotation)
}
self.mapView(self.mapView, regionDidChangeAnimated: true)
}
}
}
}
关于ios - 如何访问 MKMapItem 的类别或类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27478034/
MKPlacemark *placemark1 = [[MKPlacemark alloc] initWithPlacemark:mapItem1.placemark]; MKMapItem *ite
我正在尝试执行MKLocalSearch.Request()并在我的mapView上显示结果,类似于this tutorial但是,当我进行搜索时,返回的坐标偏离了应有的中心位置。如果 map 正确地
我正在使用 MapKit 进行本地搜索,该搜索返回一个或多个 MKMapItem 对象。但是我在调试器中可以看到该对象的一些成员,但我无法访问。我特别需要的是UID。 我试过 item.place
有人可以帮我理解我需要添加什么来获取用户位置和地标之间的距离吗?我只是不确定要更改 distanceLabel.text 中的内容以使每个地标的数字发生变化。谢谢! import UIKit impo
尝试将 MKMapItem 保存为我的自定义类的一部分。 import UIKit import MapKit class Place: NSObject, NSCoding { var ma
我有一个 MKMapItems 数组,我正在尝试找到可以插入边界区域的坐标,这将使包含所有 MKMapItems 的 map 放大最大 这些 map 项中的每一个都有坐标,因此通过一些简单的边界计算就
如何在 UserDefaults 的帮助下保存和检索 MKMapItem 数组? var recentDestination: [MKMapItem] = [] 最佳答案 由于MKMapItem 符合
尝试打开 Apple map 获取路线时,出现错误“无法将‘NSKVONotifying_MKPointAnnotation’类型的值转换为‘MKMapItem’”。我是这方面的新手,我一直在拼凑代码
如何在 Swift 中将 MKMapItem 转换为 CLPlacemark? 我的代码给我一个编译器错误 'MKMapItem' is not convertible to 'CLPlacemark
我正在编写一个使用 MapKit 的应用程序。我已经实现了 MKLocalSearch,并且得到了一组 MKMapItem。但是我想知道是否有可能获得每个项目的类别。例如,在 map 应用程序中,商店
如何启动 iOS6 的默认 map 应用程序并将其传递给自定义位置? 例如: [[MKMapItem setLocation:MyLocation] openInMapsWithLaunchOptio
MKAnnotation 和 MKMapItem 之间有什么区别? 当我想在 map 上显示一些有趣的地点时,应该使用哪一个? 我有一个对象列表,其中包含纬度、经度、标题、描述和照片 到目前为止,我希
MKAnnotation 有什么区别?和 MKMapItem ? 当我想在我的 map 上显示一些有趣的地方时使用哪个? 我有一个包含 latitude 的对象列表, longitude , titl
let geocoder = CLGeocoder() let sel = parkAnnotation.getLocation() let location = CLL
我有一个 SearchBar,它给出的名称打印在 TableView 中搜索的名称。在添加搜索的键之前,我正在检查我的数据库是否获得了变量。如果我的数据库得到它,我会在 TableView 中添加搜索
我正在做一个 Core Data 项目,早期我发现 MKMapItems 不符合 NSCoder,所以我存储 MKMapItem s 的坐标在核心数据中加倍,稍后检索它们以生成到目的地的方向。 我在下
这是我的场景:我需要准时获取用户的当前位置,以便在 MKMapView 中向他们显示一组附近的兴趣点。我不需要跟踪用户的位置。我需要有人澄清最好的方法应该是: 1) ASFAIK,是否可以通过调用 m
使用 MKLocalSearchRequest() 我得到一个 MKMapItem 数组。 我只需要项目的纬度和经度。看起来应该很容易。 let search = MKLocalSearch(requ
我得到了 MKLocalSearch 的结果,它包括类似... { address = { formattedAddressLine = (
我想访问 MKMapItem 中的数据目的。搜索资料后,我正在问社区。根据 Apple class reference,有这些属性: 地标 是当前位置 姓名 电话号码 网址 如果我记录 MKMapIt
我是一名优秀的程序员,十分优秀!