FeatureDictionary

Types

Link copied to clipboard
object Companion
Link copied to clipboard
inner class QueryByIdBuilder
Link copied to clipboard
inner class QueryByTagBuilder
Link copied to clipboard
inner class QueryByTermBuilder

Functions

Link copied to clipboard

Builder to find a feature by id. See getById

Link copied to clipboard

Builder to find matches by a set of tags. See getByTags

Link copied to clipboard

Builder to find matches by given search word. See getByTerm

Link copied to clipboard
fun getById(id: String, languages: List<String?>? = null, country: String? = null): Feature?

Returns the feature associated with the given id or null if it does not exist

Link copied to clipboard
fun getByTags(tags: Map<String, String>, languages: List<String?>? = null, country: String? = null, geometry: GeometryType? = null, isSuggestion: Boolean? = null): List<Feature>

Search for features by a set of tags.

Link copied to clipboard
fun getByTerm(search: String, languages: List<String?>? = null, country: String? = null, geometry: GeometryType? = null, isSuggestion: Boolean? = null): Sequence<Feature>

Search for features by a search term.