ItineraryPoint
public struct ItineraryPoint
Represents the point of the route
-
Creates an instance of
ItineraryPoint, given a coordinate and address of a place.Note
See
Placefor more details on location parameters.Declaration
Swift
public init( coordinate: CLLocationCoordinate2D, name: String? = nil, address: Address? = nil, heading: Measurement<UnitAngle>? = nil )Parameters
coordinateThe coordinate of the itinerary point.
nameThe name of the place of the itinerary point.
addressThe
Addressinformation about the place of the itinerary point.headingThe direction in which we want to arrive and depart at this point, measured clockwise from North.
-
An unique identifier of the itinerary point
Declaration
Swift
public let id: UUID -
The direction in which we want to arrive and depart at this point, measured clockwise from North
Declaration
Swift
public var heading: Measurement<UnitAngle>?
TomTom SDK for iOS (0.40.0)
ItineraryPoint