Package-level declarations

Types

Link copied to clipboard
class ItineraryError(message: String, cause: Throwable? = null) : Throwable
Link copied to clipboard
Link copied to clipboard
data class ItineraryOptions(val indoorLine: LineOptions = LineOptions(), val projectionLine: LineOptions = LineOptions(color = Color.GRAY, dashPattern = PropertyFactory.lineDasharray(arrayOf(0.5F, 2F))), val outdoorLine: LineOptions = LineOptions())

A data class containing information about itinerary options.

Link copied to clipboard
data class LineOptions(val width: Float = 8.0f, val opacity: Float = 0.8f, val color: Int = Color.BLUE, val dashPattern: PropertyValue<Array<Float>>? = null)

A data class containing information about the options of the line.