Road
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.
Constructors
Link copied to clipboard
constructor(name: TextWithPhonetics?, numbers: List<TextWithPhonetics>, shields: List<RoadShield>, types: Set<RoadType> = emptySet())
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun copy(name: TextWithPhonetics? = this.name, numbers: List<TextWithPhonetics> = this.numbers, shields: List<RoadShield> = this.shields, types: Set<RoadType> = this.types): Road