RoutePoints

data class RoutePoints(val nestedList: List<List<List<Point>>>, val flatList: List<Point>)

Parameters

nestedList

nested arrays of legs -> steps -> points

flatList

list of all points on the route. The first and last point of adjacent steps overlap and are duplicated in this list.

Constructors

Link copied to clipboard
fun RoutePoints(nestedList: List<List<List<Point>>>, flatList: List<Point>)

Properties

Link copied to clipboard
val flatList: List<Point>
Link copied to clipboard
val nestedList: List<List<List<Point>>>