[[["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 2025-08-27 UTC."],[[["\u003cp\u003e\u003ccode\u003eGMSNavigationDelayCategory\u003c/code\u003e is an enum representing the delay category of a route or path.\u003c/p\u003e\n"],["\u003cp\u003eIt has four categories: \u003ccode\u003enoData\u003c/code\u003e, \u003ccode\u003eheavy\u003c/code\u003e, \u003ccode\u003emedium\u003c/code\u003e, and \u003ccode\u003elight\u003c/code\u003e, indicating different levels of traffic delays.\u003c/p\u003e\n"],["\u003cp\u003eEach category is represented by an integer value, accessible in both Swift and Objective-C.\u003c/p\u003e\n"],["\u003cp\u003eThe description for all categories currently states "No traffic data is provided," which may indicate a documentation error or functionality reliant on external data.\u003c/p\u003e\n"]]],["`GMSNavigationDelayCategory` is an enumeration representing the delay category of a route or path. It offers four cases: `noData` (0), `heavy` (1), `medium` (2), and `light` (3). Each case indicates a different level of traffic delay, from no data available to varying degrees of delay, which are defined by integer values. Each one is presented in both Swift and Objective-C syntaxes. The document incorrectly states the same definition for all.\n"],null,["# GoogleNavigation Framework Reference\n\nGMSNavigationDelayCategory\n==========================\n\n enum GMSNavigationDelayCategory : NSInteger {}\n\nA `GMSNavigationDelayCategory` is a category that represents the delay category of a route or a\na path.\n- `\n ``\n ``\n `\n\n ### [GMSNavigationDelayCategoryNoData](#/c:@E@GMSNavigationDelayCategory@GMSNavigationDelayCategoryNoData)\n\n `\n ` \n No traffic data is provided. \n\n #### Declaration\n\n Swift \n\n case noData = 0\n\n Objective-C \n\n GMSNavigationDelayCategoryNoData = 0\n\n- `\n ``\n ``\n `\n\n ### [GMSNavigationDelayCategoryHeavy](#/c:@E@GMSNavigationDelayCategory@GMSNavigationDelayCategoryHeavy)\n\n `\n ` \n No traffic data is provided. \n\n #### Declaration\n\n Swift \n\n case heavy = 1\n\n Objective-C \n\n GMSNavigationDelayCategoryHeavy = 1\n\n- `\n ``\n ``\n `\n\n ### [GMSNavigationDelayCategoryMedium](#/c:@E@GMSNavigationDelayCategory@GMSNavigationDelayCategoryMedium)\n\n `\n ` \n No traffic data is provided. \n\n #### Declaration\n\n Swift \n\n case medium = 2\n\n Objective-C \n\n GMSNavigationDelayCategoryMedium = 2\n\n- `\n ``\n ``\n `\n\n ### [GMSNavigationDelayCategoryLight](#/c:@E@GMSNavigationDelayCategory@GMSNavigationDelayCategoryLight)\n\n `\n ` \n No traffic data is provided. \n\n #### Declaration\n\n Swift \n\n case light = 3\n\n Objective-C \n\n GMSNavigationDelayCategoryLight = 3"]]