GoogleRidesharingConsumer Framework Reference
Stay organized with collections
Save and categorize content based on your preferences.
GMTCMapViewSessionState
enum GMTCMapViewSessionState : NSUInteger {}
Describes the activity status of a map view session.
-
The map view session is not yet added to a map view.
Declaration
Objective-C
GMTCMapViewSessionStateInactive
-
The map view session is added to a map view.
Declaration
Objective-C
GMTCMapViewSessionStateActive
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-27 UTC.
[null,null,["Last updated 2025-08-27 UTC."],[[["\u003cp\u003e\u003ccode\u003eGMTCMapViewSessionState\u003c/code\u003e is an enum that defines the activity status of a map view session.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eGMTCMapViewSessionStateInactive\u003c/code\u003e indicates that the map view session has not yet been added to a map view.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eGMTCMapViewSessionStateActive\u003c/code\u003e indicates that the map view session has been added to a map view.\u003c/p\u003e\n"]]],["The `GMTCMapViewSessionState` enum defines the activity status of a map view session. It has two states: `inactive`, represented by the value 0, indicating the session is not yet added to a map view, and `active`, represented by the value 1, meaning the session is currently added to a map view. The state is accessible in both Swift and Objective-C.\n"],null,["# GoogleRidesharingConsumer Framework Reference\n\nGMTCMapViewSessionState\n=======================\n\n enum GMTCMapViewSessionState : NSUInteger {}\n\nDescribes the activity status of a map view session.\n- `\n ``\n ``\n `\n\n ### [GMTCMapViewSessionStateInactive](#/c:@E@GMTCMapViewSessionState@GMTCMapViewSessionStateInactive)\n\n `\n ` \n The map view session is not yet added to a map view. \n\n #### Declaration\n\n Swift \n\n case inactive = 0\n\n Objective-C \n\n GMTCMapViewSessionStateInactive\n\n- `\n ``\n ``\n `\n\n ### [GMTCMapViewSessionStateActive](#/c:@E@GMTCMapViewSessionState@GMTCMapViewSessionStateActive)\n\n `\n ` \n The map view session is added to a map view. \n\n #### Declaration\n\n Swift \n\n case active = 1\n\n Objective-C \n\n GMTCMapViewSessionStateActive"]]