RouteLeg
public struct RouteLeg
Represents information about a part of a Route
between two RouteStops
.
Contains a list of Instruction
s for all the maneuvers along the route leg.
List of all coordinates of the route leg.
Declaration
Swift
public var geometry: [CLLocationCoordinate2D]
Creates a RouteLeg
instance.
Declaration
Swift
public init(
geometry: [CLLocationCoordinate2D],
instructions: [Instruction],
summary: Summary,
mapReferences: MapReferences? = nil
)
Parameters
geometry
|
List of all coordinates of the route leg. |
instructions
|
List of instructions associated with a particular guidance step. |
summary
|
Summary of the route. |
mapReferences
|
The map references. |
List of instructions associated with a particular guidance step.
Declaration
Swift
public var instructions: [Instruction]
The map references.
Declaration
Swift
public var mapReferences: MapReferences?
Summary of the route.
Declaration
Swift
public var summary: Summary