Stay organized with collections
Save and categorize content based on your preferences.
GMSNavigationSpeedAlertSeverity
NS_ENUM(NSInteger,GMSNavigationSpeedAlertSeverity){/** Either speed or speed limit could not be determined. */GMSNavigationSpeedAlertSeverityUnknown=-2,/** No speeding is occurring. */GMSNavigationSpeedAlertSeverityNotSpeeding=-1,/** Minor speed alert. */GMSNavigationSpeedAlertSeverityMinor=0,/** Major speed alert. */GMSNavigationSpeedAlertSeverityMajor,}
[[["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\u003eGMSNavigationSpeedAlertSeverity\u003c/code\u003e is an enum defining different levels of speed alerts during navigation.\u003c/p\u003e\n"],["\u003cp\u003eIt includes four severity levels: \u003ccode\u003eUnknown\u003c/code\u003e, \u003ccode\u003eNotSpeeding\u003c/code\u003e, \u003ccode\u003eMinor\u003c/code\u003e, and \u003ccode\u003eMajor\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eUnknown\u003c/code\u003e indicates that either the current speed or the speed limit is undetermined.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eNotSpeeding\u003c/code\u003e signifies that the current speed is within the allowed limit.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eMinor\u003c/code\u003e and \u003ccode\u003eMajor\u003c/code\u003e represent increasing levels of speeding severity, alerting the user to potential risks.\u003c/p\u003e\n"]]],[],null,["# GoogleNavigation Framework Reference\n\nGMSNavigationSpeedAlertSeverity\n===============================\n\n NS_ENUM(NSInteger, GMSNavigationSpeedAlertSeverity) {\n /** Either speed or speed limit could not be determined. */\n GMSNavigationSpeedAlertSeverityUnknown = -2,\n\n /** No speeding is occurring. */\n GMSNavigationSpeedAlertSeverityNotSpeeding = -1,\n\n /** Minor speed alert. */\n GMSNavigationSpeedAlertSeverityMinor = 0,\n\n /** Major speed alert. */\n GMSNavigationSpeedAlertSeverityMajor,\n }\n\n- `\n ``\n ``\n `\n\n ### [GMSNavigationSpeedAlertSeverityUnknown](#/c:@E@GMSNavigationSpeedAlertSeverity@GMSNavigationSpeedAlertSeverityUnknown)\n\n `\n ` \n Either speed or speed limit could not be determined. \n\n #### Declaration\n\n Swift \n\n case unknown = -2\n\n Objective-C \n\n GMSNavigationSpeedAlertSeverityUnknown = -2\n\n- `\n ``\n ``\n `\n\n ### [GMSNavigationSpeedAlertSeverityNotSpeeding](#/c:@E@GMSNavigationSpeedAlertSeverity@GMSNavigationSpeedAlertSeverityNotSpeeding)\n\n `\n ` \n No speeding is occurring. \n\n #### Declaration\n\n Swift \n\n case notSpeeding = -1\n\n Objective-C \n\n GMSNavigationSpeedAlertSeverityNotSpeeding = -1\n\n- `\n ``\n ``\n `\n\n ### [GMSNavigationSpeedAlertSeverityMinor](#/c:@E@GMSNavigationSpeedAlertSeverity@GMSNavigationSpeedAlertSeverityMinor)\n\n `\n ` \n Minor speed alert. \n\n #### Declaration\n\n Swift \n\n case minor = 0\n\n Objective-C \n\n GMSNavigationSpeedAlertSeverityMinor = 0\n\n- `\n ``\n ``\n `\n\n ### [GMSNavigationSpeedAlertSeverityMajor](#/c:@E@GMSNavigationSpeedAlertSeverity@GMSNavigationSpeedAlertSeverityMajor)\n\n `\n ` \n Major speed alert. \n\n #### Declaration\n\n Swift \n\n case major = 1\n\n Objective-C \n\n GMSNavigationSpeedAlertSeverityMajor"]]