[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-11-15 UTC."],[[["\u003cp\u003e\u003ccode\u003eGMSNavigationLaneDirection\u003c/code\u003e provides information about the direction of a single lane during navigation.\u003c/p\u003e\n"],["\u003cp\u003eIt indicates the shape of the lane using \u003ccode\u003elaneShape\u003c/code\u003e and whether it's recommended using \u003ccode\u003erecommended\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eGMSNavigationLaneDirection\u003c/code\u003e objects cannot be directly initialized using \u003ccode\u003einit\u003c/code\u003e.\u003c/p\u003e\n"]]],["GMSNavigationLaneDirection provides information about a single lane during navigation. It reveals the `laneShape`, defined by a `GMSNavigationLaneShape` enum, and indicates whether the lane is `recommended` via a boolean. Instances of this class cannot be directly initialized, as the `-init` method is unavailable. The `laneShape` and `recommended` properties are read-only and available in both Swift and Objective-C.\n"],null,["GMSNavigationLaneDirection \n\n @interface GMSNavigationLaneDirection : NSObject\n\nInformation about a single lane direction during navigation.\n- `\n ``\n ``\n `\n\n [laneShape](#/c:objc(cs)GMSNavigationLaneDirection(py)laneShape)`\n ` \n Returns the [GMSNavigationLaneShape](../Enums/GMSNavigationLaneShape.html) for this lane direction. \n\n Declaration \n Swift \n\n var laneShape: ../Enums/GMSNavigationLaneShape.html { get }\n\n Objective-C \n\n @property (nonatomic, readonly) ../Enums/GMSNavigationLaneShape.html laneShape;\n\n- `\n ``\n ``\n `\n\n [recommended](#/c:objc(cs)GMSNavigationLaneDirection(py)recommended)`\n ` \n Whether this lane direction is recommended or not. \n\n Declaration \n Swift \n\n var recommended: Bool { get }\n\n Objective-C \n\n @property (nonatomic, readonly) _Bool recommended;\n\n- `\n ``\n ``\n `\n\n [-init](#/c:objc(cs)GMSNavigationLaneDirection(im)init)`\n ` \n Unavailable \n\n Declaration \n Objective-C \n\n - (null_unspecified instancetype)init NS_UNAVAILABLE;"]]