1

我无法从 Google Places API 获取多个地点。问题是......如果我只获取一种像Bar s 这样的pin 类型,没关系,没问题。但是,如果我试图获得餐厅、酒吧、赌场......多种类型,它给了我唯一的第一名,在我们的例子中是餐厅。

我尝试通过下面的链接向Postman提出相同的请求......但例如

  • 餐厅 1030 行 JSON
  • 政治83行
  • 试图获得餐馆 + 政治 = 965 行 JSON。

我使用此代码来获取我想要的地方:

func fetchPlacesNearCoordinate(_ coordinate: CLLocationCoordinate2D, radius: Double, types:[String], completion: @escaping PlacesCompletion) -> Void {

    var urlString = "https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=\(coordinate.latitude),\(coordinate.longitude)&radius=\(50000)&rankby=prominence&sensor=true&key=\(googleApiKey)"
    let typesString = types.count > 0 ? types.joined(separator: "|") : "food"
    urlString += "&types=\(typesString)"
    urlString = urlString.addingPercentEncoding(withAllowedCharacters: CharacterSet.urlQueryAllowed) ?? urlString

    guard let url = URL(string: urlString) else { completion([]); return }

    if let task = placesTask, task.taskIdentifier > 0 && task.state == .running {
        task.cancel()
    }

    DispatchQueue.main.async {
        UIApplication.shared.isNetworkActivityIndicatorVisible = true
    }

    placesTask = session.dataTask(with: url) { data, response, error in

        if data != nil{
            for el in data!{
                //print(el)
            }
        }
        var placesArray: [PlaceContent] = []
        defer {
            DispatchQueue.main.async {
                UIApplication.shared.isNetworkActivityIndicatorVisible = false
                completion(placesArray)
            }
        }

        guard let data = data else { return }

        do{
            let decode = try JSONDecoder().decode(GooglePlacesAnswer.self, from: data)
            placesArray = (decode.results?.map{ $0.toPlaceContent() }) ?? []
        } catch let value{
            print(value.localizedDescription)
        }
    }
    placesTask?.resume()
}
4

1 回答 1

1

如官方文档中所述,您无法获得多种类型的位置。您必须提出多个请求并组合结果。

https://developers.google.com/maps/documentation/javascript/places

type - 将结果限制在与指定类型匹配的位置。只能指定一个类型(如果提供了多个类型,则忽略第一个条目之后的所有类型)。请参阅支持的类型列表

于 2019-04-08T08:04:24.143 回答