PMCurrentStreet

data class PMCurrentStreet(val streetName: String? = null, val cityName: String? = null, val countryIso: String? = null, val roadNumbers: List<String>? = null, val area: String? = null, val numberLeft: String? = null, val numberRight: String? = null, val isUrban: Boolean = false, val roadType: PMRoadType)

Represents information about current street

Constructors

Link copied to clipboard
fun PMCurrentStreet(streetName: String? = null, cityName: String? = null, countryIso: String? = null, roadNumbers: List<String>? = null, area: String? = null, numberLeft: String? = null, numberRight: String? = null, isUrban: Boolean = false, roadType: PMRoadType)

Properties

Link copied to clipboard
val area: String? = null

Defines area name, where street is located.

Link copied to clipboard
val cityName: String? = null

Defines name of the city

Link copied to clipboard
val countryIso: String? = null

Defines country iso code of the country where the current road is

Link copied to clipboard
val isUrban: Boolean = false

Defines flag if street is located in urban area (city)

Link copied to clipboard
val numberLeft: String? = null

Defines house number on left hand

Link copied to clipboard
val numberRight: String? = null

Defines house number on right hand

Link copied to clipboard
val roadNumbers: List<String>? = null

Defines numbers of the road on street position. Sorted from most common

Link copied to clipboard

Defines type of road
Default value is PMRoadType.InternationalImportance

Link copied to clipboard
val streetName: String? = null

Defines name of the street