Search in sources :

Example 1 with LocationLayerOptions

use of com.mapbox.mapboxsdk.plugins.locationlayer.LocationLayerOptions in project mapbox-plugins-android by mapbox.

the class LocationLayerModesActivity method onMapReady.

@SuppressLint("MissingPermission")
@Override
public void onMapReady(MapboxMap mapboxMap) {
    this.mapboxMap = mapboxMap;
    locationEngine = new LocationEngineProvider(this).obtainBestLocationEngineAvailable();
    locationEngine.setPriority(LocationEnginePriority.HIGH_ACCURACY);
    locationEngine.setFastestInterval(1000);
    locationEngine.addLocationEngineListener(this);
    locationEngine.activate();
    int[] padding;
    if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
        padding = new int[] { 0, 750, 0, 0 };
    } else {
        padding = new int[] { 0, 250, 0, 0 };
    }
    LocationLayerOptions options = LocationLayerOptions.builder(this).padding(padding).build();
    locationLayerPlugin = new LocationLayerPlugin(mapView, mapboxMap, locationEngine, options);
    locationLayerPlugin.addOnLocationClickListener(this);
    locationLayerPlugin.addOnCameraTrackingChangedListener(this);
    locationLayerPlugin.setCameraMode(cameraMode);
    setRendererMode(renderMode);
    getLifecycle().addObserver(locationLayerPlugin);
}
Also used : LocationLayerOptions(com.mapbox.mapboxsdk.plugins.locationlayer.LocationLayerOptions) LocationLayerPlugin(com.mapbox.mapboxsdk.plugins.locationlayer.LocationLayerPlugin) LocationEngineProvider(com.mapbox.android.core.location.LocationEngineProvider) SuppressLint(android.annotation.SuppressLint)

Aggregations

SuppressLint (android.annotation.SuppressLint)1 LocationEngineProvider (com.mapbox.android.core.location.LocationEngineProvider)1 LocationLayerOptions (com.mapbox.mapboxsdk.plugins.locationlayer.LocationLayerOptions)1 LocationLayerPlugin (com.mapbox.mapboxsdk.plugins.locationlayer.LocationLayerPlugin)1