是否可以从经纬度或地址中获取Google Place ID
?我已经很久才获取位置地址,但是Place ID
却没有运气。谁能帮帮我吗?
我的要求很简单。我有很长的时间。使用lat long提取地址。现在,我只需要该地址的地方ID。
这是我的代码:
let geocoder = GMSGeocoder()
geocoder.reverseGeocodeCoordinate(coordinate) { (response, error) in
if error != nil{
print("reverse geodcode fail: \(error!.localizedDescription)")
}else{
if let places = response?.results(){
if let place = places.first{
print("GMS Address Place-->", place)
if let lines = place.lines{
print("GEOCODE: Formatted Address: \(lines[0])")
}
}else{
print("GEOCODE: nil first in places")
}
}else{
print("GEOCODE: nil in places")
}
}