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);
}
Aggregations