I know that you can search with level 1 and level 2 categories with the HERE SDK for iOS.
However is it at all possible to search by level 3 categories? I've printed out the categories, however the level two categories do not obtain sub categories.
for category in categories! {
let subs = category.subCategories
print(category.name)
print(category.uniqueId)
for leveltwo in subs {
print(leveltwo.name)
print(leveltwo.uniqueId)
let innersubs = leveltwo.subCategories
for levelthree in innersubs {
print(levelthree.name)
print(levelthree.uniqueId)
}
}
}
Using the HERE places API, I am able to search places database based on level 3 categories using their ID, for example "600-6800-0090". Though with the SDK it seems we cannot use the id.