Base Feature
data class BaseFeature(val id: String, val tags: Map<String, String>, val geometry: List<GeometryType>, val icon: String?, val imageURL: String?, val names: List<String>, val terms: List<String>, val includeCountryCodes: List<String>, val excludeCountryCodes: List<String>, val isSearchable: Boolean, val matchScore: Float, val isSuggestion: Boolean, val addTags: Map<String, String>, val removeTags: Map<String, String>) : Feature
Data class associated with the Feature interface. Represents a non-localized feature.
Constructors
Link copied to clipboard
constructor(id: String, tags: Map<String, String>, geometry: List<GeometryType>, icon: String?, imageURL: String?, names: List<String>, terms: List<String>, includeCountryCodes: List<String>, excludeCountryCodes: List<String>, isSearchable: Boolean, matchScore: Float, isSuggestion: Boolean, addTags: Map<String, String>, removeTags: Map<String, String>)