GMSRouteLeg
@interface GMSRouteLeg : NSObjectAn immutable class which represents a single leg of a journey, either from the device’s current position to the first destination, or from one destination to a subsequent destination.
- 
                  
                  The destination waypoint associated with this leg of the route. DeclarationSwift var destinationWaypoint: GMSNavigationWaypoint? { get }Objective-C @property (nonatomic, readonly, nullable) GMSNavigationWaypoint *destinationWaypoint;
- 
                  
                  The final coordinate in this leg. Note that this will in general not be the same location as the destination waypoint, unless the waypoint is positioned directly on a road. DeclarationSwift var destinationCoordinate: CLLocationCoordinate2D { get }Objective-C @property (nonatomic, readonly) CLLocationCoordinate2D destinationCoordinate;
- 
                  
                  Unavailable DeclarationObjective-C - (null_unspecified instancetype)init NS_UNAVAILABLE;