热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何找到给定位置iOS的所有餐厅-HowtofindallRestaurantsinagivenlocationiOS

Imdoingthissmallprojectformyselftogetacquaintedtomapkit,butIcantfindanyresources

I'm doing this small project for myself to get acquainted to mapkit, but I can't find any resources on this question that don't involve integrating with the foursquare API (which I don't want to do).

我正在为自己做这个小项目以熟悉mapkit,但是我找不到任何关于这个问题的资源,不涉及与foursquare API集成(我不想这样做)。

I need to do this:

我需要这样做:

  • Do a local search with the query "Restaurant"
  • 使用查询“餐厅”进行本地搜索
  • Return back all Restaurants with annotations on the map within a certain radius
  • 在特定半径范围内返回所有带有注释的餐厅
  • Fill up a tableview with the main information about each location.

  • 使用有关每个位置的主要信息填写tableview。
  • 1 个解决方案

    #1


    2  

    Provide the term you want to search for as the natural language parameter "restaurant".

    提供您要搜索的术语作为自然语言参数“restaurant”。

    func searchBy(naturalLanguageQuery: String, region: MKCoordinateRegion, coordinates: CLLocationCoordinate2D, completionHandler: (response: MKLocalSearchResponse?, error: NSError?) -> Void) {
    
        let request = MKLocalSearchRequest()
        request.naturalLanguageQuery = naturalLanguageQuery
        request.region = region
    
        let search = MKLocalSearch(request: request)
        search.startWithCompletionHandler { response, error in
            guard let respOnse= response else {
                completionHandler(response: nil, error: error)
    
                return
            }
    
            completionHandler(response: response, error: error)
        }
    }
    

    推荐阅读
    author-avatar
    呦呦嘉宾
    这个家伙很懒,什么也没留下!
    PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
    Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有