summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/constants/MyLocationTracking.java
blob: 1283283fa50d2381f046296be54547aba0331824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.mapbox.mapboxsdk.constants;

import android.support.annotation.IntDef;

import com.mapbox.mapboxsdk.maps.MapView;
import com.mapbox.mapboxsdk.maps.MapboxMap;
import com.mapbox.mapboxsdk.maps.TrackingSettings;
import com.mapbox.mapboxsdk.maps.widgets.MyLocationView;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * MyLocationTracking exposes types of location tracking modes.
 * * <p>
 * This allows tracking the user location on screen by updating the camera position when a location update occurs.
 * </p>
 * <p>
 * Required to enable showing the user location first through {@link MapboxMap#setMyLocationEnabled(boolean)}.
 * </p>
 *
 * @see MapboxMap#setMyLocationEnabled(boolean)
 * @see TrackingSettings#setMyLocationTrackingMode(int)
 */
public class MyLocationTracking {

  @IntDef( {TRACKING_NONE, TRACKING_FOLLOW})
  @Retention(RetentionPolicy.SOURCE)
  public @interface Mode {
  }

  /**
   * Tracking the location of the user is disabled.
   */
  public static final int TRACKING_NONE = 0x00000000;

  /**
   * Tracking the location of the user. {@link MapView} will reposition to center of {@link MyLocationView}
   */
  public static final int TRACKING_FOLLOW = 0x00000004;

}