AI-generated Key Takeaways
-
GMSNavigationLane
provides information about a single traffic lane during navigation. -
It includes an array of
GMSNavigationLaneDirection
objects indicating allowed maneuvers within the lane. -
Instances of
GMSNavigationLane
cannot be directly initialized usinginit
.
GMSNavigationLane
@interface GMSNavigationLane : NSObject
Information about a single lane during navigation.
-
The array of
GMSNavigationLaneDirection
in this given lane.Declaration
Swift
var laneDirections: [GMSNavigationLaneDirection] { get }
Objective-C
@property (nonatomic, readonly) NSArray<GMSNavigationLaneDirection *> *_Nonnull laneDirections;
-
Unavailable
Declaration
Objective-C
- (null_unspecified instancetype)init NS_UNAVAILABLE;