我使用mapkit并能够获取特定位置的地址
let firstPlacemark = placemarks,
let addressDictionary = firstPlacemark.addressDictionary else { return }
// let street = addressDictionary["Street"]
// let city = addressDictionary["City"]
// let state = addressDictionary["State"]
// let zip = addressDictionary["ZIP"]
print(addressDictionary.description)
if let array = addressDictionary["FormattedAddressLines"] as? [Any] {
let address = array.map { "\($0)" }.joined(separator: ",\n")
print("Address : \(address)")
}
但我们可以获得更多信息,例如评论联系号码。图像等。像Apple地图显示(Observe Screeenshot)
iOS中是否有可用的API,或者它将通过TripAdvisor ???
提供P.S:我不想要任何Google API。
如果不了解选民,如果不知道答案,那么请不要浪费我的观点。这很容易下来,但你永远不知道为了获得这些积分已经做了多少努力。 或者如果问题重复,请向我提供解决方案或告诉我。
答案 0 :(得分:0)