RoutingType

annotation class RoutingType

Represents values describing different routing types.

Functions

Link copied to clipboard
abstract fun annotationType(): Class<out Annotation>
Link copied to clipboard
abstract fun equals(p: Any): Boolean
Link copied to clipboard
abstract fun hashCode(): Int
Link copied to clipboard
abstract fun toString(): String

Properties

Link copied to clipboard
val Economic: Int = 2
Search for economic route, some travel time may be sacrificed in order to reduce the distance traveled.
Link copied to clipboard
val Fastest: Int = 1
Search for the fastest route, taking road conditions and restrictions into account (minimizes travel time).
Link copied to clipboard
val Shortest: Int = 0
Search for the shortest route, taking road conditions and restrictions into account (minimizes travel distance).