Sections

data class Sections(    val laneSections: List<LaneSection> = emptyList(),     val trafficSections: List<TrafficSection> = emptyList(),     val travelModeSections: List<TravelModeSection> = emptyList(),     val speedLimitSections: List<SpeedLimitSection> = emptyList(),     val carpoolSections: List<CarpoolSection> = emptyList(),     val carTrainSections: List<CarTrainSection> = emptyList(),     val countrySections: List<CountrySection> = emptyList(),     val ferrySections: List<FerrySection> = emptyList(),     val motorwaySections: List<MotorwaySection> = emptyList(),     val pedestrianSections: List<PedestrianSection> = emptyList(),     val roadShieldSections: List<RoadShieldSection> = emptyList(),     val tollRoadSections: List<TollRoadSection> = emptyList(),     val tollVignetteSections: List<TollVignetteSection> = emptyList(),     val tunnelSections: List<TunnelSection> = emptyList(),     val unpavedSections: List<UnpavedSection> = emptyList(),     val urbanSections: List<UrbanSection> = emptyList())

Parameters

laneSections

Information about lane directions for route.

trafficSections

Information about traffic for the route.

travelModeSections

Information about travel mode sections for the route.

speedLimitSections

Information about speed limit sections for the route.

carpoolSections

Information about carpool sections for the route.

carTrainSections

Information about car train sections for the route.

countrySections

Information about country sections for the route.

ferrySections

Information about ferry sections for the route.

motorwaySections

Information about motorway sections for the route.

pedestrianSections

Information about pedestrian only sections for the route.

roadShieldSections

Information about road shield sections for the route.

tollRoadSections

Information about toll road sections for the route.

tollVignetteSections

Information about toll vignette sections for the route.

tunnelSections

Information about tunnel sections for the route.

unpavedSections

Information about unpaved sections for the route.

urbanSections

Information about urban sections for the route.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
fun Sections(    laneSections: List<LaneSection> = emptyList(),     trafficSections: List<TrafficSection> = emptyList(),     travelModeSections: List<TravelModeSection> = emptyList(),     speedLimitSections: List<SpeedLimitSection> = emptyList(),     carpoolSections: List<CarpoolSection> = emptyList(),     carTrainSections: List<CarTrainSection> = emptyList(),     countrySections: List<CountrySection> = emptyList(),     ferrySections: List<FerrySection> = emptyList(),     motorwaySections: List<MotorwaySection> = emptyList(),     pedestrianSections: List<PedestrianSection> = emptyList(),     roadShieldSections: List<RoadShieldSection> = emptyList(),     tollRoadSections: List<TollRoadSection> = emptyList(),     tollVignetteSections: List<TollVignetteSection> = emptyList(),     tunnelSections: List<TunnelSection> = emptyList(),     unpavedSections: List<UnpavedSection> = emptyList(),     urbanSections: List<UrbanSection> = emptyList())

Properties

Link copied to clipboard
val carpoolSections: List<CarpoolSection>
Link copied to clipboard
val carTrainSections: List<CarTrainSection>
Link copied to clipboard
val countrySections: List<CountrySection>
Link copied to clipboard
val ferrySections: List<FerrySection>
Link copied to clipboard
val laneSections: List<LaneSection>
Link copied to clipboard
val motorwaySections: List<MotorwaySection>
Link copied to clipboard
val pedestrianSections: List<PedestrianSection>
Link copied to clipboard
val roadShieldSections: List<RoadShieldSection>
Link copied to clipboard
val speedLimitSections: List<SpeedLimitSection>
Link copied to clipboard
val tollRoadSections: List<TollRoadSection>
Link copied to clipboard
val tollVignetteSections: List<TollVignetteSection>
Link copied to clipboard
val trafficSections: List<TrafficSection>
Link copied to clipboard
val travelModeSections: List<TravelModeSection>
Link copied to clipboard
val tunnelSections: List<TunnelSection>
Link copied to clipboard
val unpavedSections: List<UnpavedSection>
Link copied to clipboard
val urbanSections: List<UrbanSection>