AI-generated Key Takeaways
-
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 usingrecommended
. -
GMSNavigationLaneDirection
objects cannot be directly initialized usinginit
.
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;