GoogleNavigation Framework Reference

  • GMSNavigationLaneDirection provides information about the direction of a single lane during navigation.

  • It indicates the shape of the lane using laneShape and whether it's recommended using recommended.

  • GMSNavigationLaneDirection objects cannot be directly initialized using init.

GMSNavigationLaneDirection

@interface GMSNavigationLaneDirection : NSObject

Information about a single lane direction during navigation.

  • Returns the GMSNavigationLaneShape for this lane direction.

    Declaration

    Swift

    var laneShape: GMSNavigationLaneShape { get }

    Objective-C

    @property (nonatomic, readonly) GMSNavigationLaneShape laneShape;
  • Whether this lane direction is recommended or not.

    Declaration

    Swift

    var recommended: Bool { get }

    Objective-C

    @property (nonatomic, readonly) _Bool recommended;
  • Unavailable

    Declaration

    Objective-C

    - (null_unspecified instancetype)init NS_UNAVAILABLE;