What Here
Fetching localization details from geographic coordinates via whatHere().
Reverse geocode a coordinate
SSMap.whatHere(point: coord) { result, error in
if let item = result?.first {
let address = [item.road, item.village, item.district]
.compactMap { $0 }
.filter { !$0.isEmpty }
.joined(separator: ", ")
print("Location: \(address)")
}
}
See also: iOS Map SDK overview.