ItineraryOptions
public struct ItineraryOptions : Equatable
extension ItineraryOptions: ShortStringConvertible
A struct containing information about itinerary options.
-
The struct containing information about the options of the indoor part(s) of the itinerary.
Declaration
Swift
public let indoorLine: LineOptions -
The struct containing information about the options of the projection part(s) of the itinerary.
Defaults:
- color = .gray
- dashPattern = NSExpression(forConstantValue: [0.5, 2])
Declaration
Swift
public let projectionLine: LineOptions -
The struct containing information about the options of the outdoor part(s) of the itinerary.
Declaration
Swift
public let outdoorLine: LineOptions -
Initializes and returns a newly allocated itinerary options with the specified parameters.
Declaration
Swift
public init( indoorLine: LineOptions = .init(), projectionLine: LineOptions = .init(color: .gray, dashPattern: .init(forConstantValue: [0.5, 2])), outdoorLine: LineOptions = .init() )Parameters
indoorOptionsThe struct containing information about the options of the indoor part(s) of the itinerary.
projectionOptionsThe struct containing information about the options of the projection part(s) of the itinerary.
outdoorOptionsThe struct containing information about the options of the outdoor part(s) of the itinerary.
-
Declaration
Swift
public var shortDescription: String { get }
View on GitHub