Road
data class Road(val name: TextWithPhonetics?, val numbers: List<TextWithPhonetics>, val shields: List<RoadShield>, val types: Set<RoadType> = emptySet())
Road information at a given point on a Route.
Parameters
name
Name of the road.
numbers
Road numbers.
shields
Road shields.
types
Road types.
Constructors
Link copied to clipboard
constructor(name: TextWithPhonetics?, numbers: List<TextWithPhonetics>, shields: List<RoadShield>, types: Set<RoadType> = emptySet())