GoogleRidesharingConsumer Framework Reference

  • GMTCMapViewSessionState is an enum that defines the activity status of a map view session.

  • GMTCMapViewSessionStateInactive indicates that the map view session has not yet been added to a map view.

  • GMTCMapViewSessionStateActive indicates that the map view session has been added to a map view.

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

    Swift

    case inactive = 0

    Objective-C

    GMTCMapViewSessionStateInactive
  • The map view session is added to a map view.

    Declaration

    Swift

    case active = 1

    Objective-C

    GMTCMapViewSessionStateActive