Itinerary
public struct Itinerary
Represents a requested sequence of points that a route should visit.
The ItineraryPoint
of destination
Declaration
Swift
public var destination: ItineraryPoint
Initializes the Itinerary
Declaration
Swift
public init(origin: ItineraryPoint, destination: ItineraryPoint, waypoints: [ItineraryPoint] = [])
Parameters
origin
|
|
destination
|
|
waypoints
|
Array of |
The ItineraryPoint
of origin
Declaration
Swift
public var origin: ItineraryPoint
Waypoints of the route, which are represented by an array of ItineraryPoint
s
Declaration
Swift
public var waypoints: [ItineraryPoint]