更精確我想獲得更準確的地址(座標),比從功能反向地理編碼位置:比範圍
geoCoder.reverseGeocodeLocation(location, completionHandler: {})
在谷歌地圖API指南(https://developers.google.com/maps/documentation/geocoding/intro#Results)地址範圍,他們指定我可以更改location_type以獲得更準確的地址。我如何指定這些參數?這是我的代碼:
let geoCoder = CLGeocoder()
let location = CLLocation(latitude: center.latitude, longitude: center.longitude)
geoCoder.reverseGeocodeLocation(location, completionHandler: { (placemarks, error) -> Void in ...
})