MapUserLocationTrackingMode Enumeration

Specifies the tracking mode of user location.

Android

public enum MapUserLocationTrackingMode {
  NONE,
  CENTERED_ON_USER
}

iOS

typedef NS_ENUM(NSInteger, MSMapUserLocationTrackingMode) {
  MSMapUserLocationTrackingModeNone,
  MSMapUserLocationTrackingModeCenteredOnUser
};

Values

None

The camera will not be tracking the user's location.

CenteredOnUser

The camera will center on the user's location until the user interrupts tracking by interacting with the map.

See Also