AddressSearchRequest

data class AddressSearchRequest(acceptLanguages: List<String>?, text: String, locationBias: Location?, limit: Int, includeKeys: List<String>?, excludeValues: List<String>?)

Address search request for Nominatim full address search.

See also: https://wiki.openstreetmap.org/wiki/Nominatim#Address_lookup

Constructors

AddressSearchRequest
Link copied to clipboard
fun AddressSearchRequest(acceptLanguages: List<String>? = null, text: String, locationBias: Location? = null, limit: Int = 10, includeKeys: List<String>? = null, excludeValues: List<String>? = null)

Properties

acceptLanguages
Link copied to clipboard
val acceptLanguages: List<String>? = null
excludeValues
Link copied to clipboard
val excludeValues: List<String>? = null
includeKeys
Link copied to clipboard
val includeKeys: List<String>? = null
limit
Link copied to clipboard
val limit: Int = 10
locationBias
Link copied to clipboard
val locationBias: Location? = null
text
Link copied to clipboard
val text: String