AI-generated Key Takeaways
-
GMSNavigationDelayCategory
is an enum representing the delay category of a route or path. -
It has four categories:
noData
,heavy
,medium
, andlight
, indicating different levels of traffic delays. -
Each category is represented by an integer value, accessible in both Swift and Objective-C.
-
The description for all categories currently states "No traffic data is provided," which may indicate a documentation error or functionality reliant on external data.
GMSNavigationDelayCategory
enum GMSNavigationDelayCategory : NSInteger {}
A GMSNavigationDelayCategory
is a category that represents the delay category of a route or a
a path.
-
No traffic data is provided.
Declaration
Swift
case noData = 0
Objective-C
GMSNavigationDelayCategoryNoData = 0
-
No traffic data is provided.
Declaration
Swift
case heavy = 1
Objective-C
GMSNavigationDelayCategoryHeavy = 1
-
No traffic data is provided.
Declaration
Swift
case medium = 2
Objective-C
GMSNavigationDelayCategoryMedium = 2
-
No traffic data is provided.
Declaration
Swift
case light = 3
Objective-C
GMSNavigationDelayCategoryLight = 3