我尝试在Swift 3.0中创建的是基于当前位置(或指定的位置)的预定范围(例如100 km)的简单位置搜索。我不希望任何超出该范围的结果。我不想看到地图,在其上放任何针,等等。只是想要搜索,然后返回结果。这可能与mapkit有关吗?我找到的每个示例或教程都从地图开始,并使用地图获取区域/跨度,然后返回带有结果的地图。在尝试其中一些示例时,搜索不仅限于地图区域,因为我在其他国家/地区获得了结果。我想要的是单个屏幕搜索,它只返回一个选定的位置。没有地图。没有来自世界另一端的结果。我应该使用mapkit以外的东西吗?或者我可以在没有mapview的情况下完成这个吗?
编辑: 有了@Rob提供的信息,我就到这里......
extension LocationSearchTable : UISearchResultsUpdating {
func updateSearchResults(for searchController: UISearchController) {
var localRegion: MKCoordinateRegion
let distance: CLLocationDistance = 1200
let currentLocation = CLLocationCoordinate2D.init(latitude: 50.412165, longitude: -104.66087)
localRegion = MKCoordinateRegionMakeWithDistance(currentLocation, distance, distance)
print(localRegion)
guard let searchBarText = searchController.searchBar.text else { return }
let request = MKLocalSearchRequest()
request.naturalLanguageQuery = searchBarText
request.region = localRegion
let search = MKLocalSearch(request: request)
search.start { response, _ in
guard let response = response else {
return
}
self.matchingItems = response.mapItems
self.tableView.reloadData()
}
}
}
然而,我仍然有点困惑。它似乎仍然带来了全面的结果。例如,如果我正在根据里贾纳,SK的位置寻找地址19 Rendek Crescent,以下是我输入的结果:
为什么它返回里贾纳以外的地方,为什么Rae St和Read Ave在Rendek之前出现?
答案 0 :(得分:0)
您首先要创建一个位置类,以保持您的细胞有条理。 (别忘了将MapKit导入这些视图控制器)
import UIKit
import MapKit
class Location: NSObject {
var locationName: String!
var location: String!
init(locationName: String, location: String) {
self.locationName = locationName
self.location = location
}
}
然后,创建一个数组,将数据存储在TableViewController中:
var locations = [Location]()
您还需要在单元类中使用配置单元格功能。
func configureLocationCell(locationName: String, location: String) {
self.myLocationNameLabel.text = locationName
self.myLocationLabel.text = location
}
然后,执行一个MKLocalSearch请求来查找你的位置:(把它放在一个文本区域内做了改变功能)
func performSearchRequest() {
let request = MKLocalSearchRequest()
let locationManager = CLLocationManager()
guard let coordinate = locationManager.location?.coordinate else { return }
request.naturalLanguageQuery = "\(myTextField.text)"
request.region = MKCoordinateRegionMakeWithDistance(coordinate, 3200, 3200)
// about a couple miles around you
MKLocalSearch(request: request).start { (response, error) in
guard error == nil else { return }
guard let response = response else { return }
guard response.mapItems.count > 0 else { return }
let randomIndex = Int(arc4random_uniform(UInt32(response.mapItems.count)))
let locationItems = response.mapItems[randomIndex]
for location in response.locationItems {
let location = Location(locationName: location.name!, location: "\(gyms.placemark.subLocality!)", "\(gyms.placemark.locality!)")
self.locations.append(location)
self.myTableView.reloadData()
}
}
}
最后,在你的TableViewController 单元格数函数中, 返回locations.count 。
最后一件事:在索引路径行的单元格中,通过键入以下内容来访问数据:
let location = locations[indexPath.row]
cell.configureLocationCell(locationName: location.locationName, location: location)