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

com.mapbox.mapboxsdk.maps.CompassViewSettings Maven / Gradle / Ivy

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

/**
 * Settings for the overlain views of a MapboxMap. Used by UiSettings.
 */
class CompassViewSettings extends ViewSettings{

    private boolean fadeFacingNorth = true;

    public CompassViewSettings() {
        super();
    }

    public boolean isFadeFacingNorth() {
        return fadeFacingNorth;
    }

    public void setFadeFacingNorth(boolean fadeFacingNorth) {
        this.fadeFacingNorth = fadeFacingNorth;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy