DingiUserTrackingMode

enum DingiUserTrackingMode {}

The mode used to track the user location on the map. Used with DingiMapView.userTrackingMode.

  • The map does not follow the user location.

    Declaration

    Objective-C

    DingiUserTrackingModeNone = 0

    Swift

    case none = 0
  • The map follows the user location. This tracking mode falls back to DingiUserTrackingModeNone if the user pans the map view.

    Declaration

    Objective-C

    DingiUserTrackingModeFollow

    Swift

    case follow = 1
  • The map follows the user location and rotates when the heading changes. The default user location annotation displays a fan-shaped indicator with the current heading. The heading indicator represents the direction the device is facing, which is sized according to the reported accuracy.

    This tracking mode is disabled if the user pans the map view, but remains enabled if the user zooms in. If the user rotates the map view, this tracking mode will fall back to DingiUserTrackingModeFollow.

    Declaration

    Objective-C

    DingiUserTrackingModeFollowWithHeading

    Swift

    case followWithHeading = 2
  • The map follows the user location and rotates when the course changes. Course represents the direction in which the device is traveling. The default user location annotation shows a puck-shaped indicator that rotates as the course changes.

    This tracking mode is disabled if the user pans the map view, but remains enabled if the user zooms in. If the user rotates the map view, this tracking mode will fall back to DingiUserTrackingModeFollow.

    Declaration

    Objective-C

    DingiUserTrackingModeFollowWithCourse

    Swift

    case followWithCourse = 3