RouteStyleDescriptor

data class RouteStyleDescriptor(    val routeIdentifier: String,     @ColorInt val lineColor: Int,     @ColorInt val lineCasingColor: Int)

This class is used for describing the route line color(s) at runtime.

Parameters

routeIdentifier

a string that identifies routes which should have their color overridden

lineColor

the color of the route line

lineCasingColor

the color of the shield line which appears below the route line and is normally wider providing a visual border for the route line.

Constructors

Link copied to clipboard
fun RouteStyleDescriptor(    routeIdentifier: String,     @ColorInt lineColor: Int,     @ColorInt lineCasingColor: Int)

Properties

Link copied to clipboard
val lineCasingColor: Int
Link copied to clipboard
val lineColor: Int
Link copied to clipboard
val routeIdentifier: String