通过半径iOS从CLLocationCoordinate

时间:2015-11-06 05:30:44

标签: ios swift google-places-api google-maps-sdk-ios

我想搜索GMSCircle半径内的地区,我有一个 reverseGeocodeFunction ,它会打印CllLocationCoordinate2D的所有可能的地点结果: `

func reverseGeocodeCoordinate(coordinate: CLLocationCoordinate2D) {
  // 1
  let geocoder = GMSGeocoder()
  // 2
  geocoder.reverseGeocodeCoordinate(coordinate) { response, error in
   for address in response.results() {
     print ("\(address.locality)")
    }
   }
}`

您知道如何将半径坐标传递给函数以获取所有可能的位置,或者如何从坐标获取所有近邻位置

0 个答案:

没有答案