Search
Geographic text search returning interactive coordinate locations via search().
Search by keyword
SSMap.search(keyword: "Coffee shop") { result, error in
// Extract top 10 matches
let suggestions = Array((result?.data ?? []).prefix(10))
for item in suggestions {
print("Found: \(item.name) at \(item.address)")
}
}
See also: iOS Map SDK overview.