All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mapbox.mapboxsdk.constants.MyBearingTracking Maven / Gradle / Ivy

There is a newer version: 9.2.1
Show newest version
package com.mapbox.mapboxsdk.constants;

import android.support.annotation.IntDef;

import com.mapbox.mapboxsdk.maps.MapView;
import com.mapbox.mapboxsdk.maps.widgets.UserLocationView;

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

/**
 * MyBearingTracking exposes different types bearing tracking modes.
 *
 * @see MapView#setMyBearingTrackingMode(int)
 * @see UserLocationView#setMyBearingTrackingMode(int)
 */
public class MyBearingTracking {

    /**
     * Indicates the parameter accepts one of the values from {@link MyBearingTracking}.
     */
    @IntDef({NONE, COMPASS, GPS, /**COMBINED**/})
    @Retention(RetentionPolicy.SOURCE)
    public @interface Mode {
    }

    /**
     * Bearing tracking is disabled
     */
    public static final int NONE = 0x00000000;

    /**
     * Tracking the bearing of the user based on sensor data
     */
    public static final int COMPASS = 0x00000004;

    /**
     * Tracking the bearing of the user based on GPS data
     */
    public static final int GPS = 0x00000008;

    //public static final int COMBINED = 0x00000012;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy