use of com.mapbox.mapboxsdk.camera.CameraPosition in project apps-android-wikipedia by wikimedia.
the class NearbyFragment method goToLocation.
private void goToLocation(@NonNull Location location) {
if (mapboxMap == null) {
return;
}
CameraPosition pos = new CameraPosition.Builder().target(new LatLng(location)).zoom(getResources().getInteger(R.integer.map_default_zoom)).build();
mapboxMap.animateCamera(CameraUpdateFactory.newCameraPosition(pos));
}
use of com.mapbox.mapboxsdk.camera.CameraPosition in project mapbox-plugins-android by mapbox.
the class LocationLayerPlugin method updateLocation.
/**
* Updates the user location icon.
*
* @param location the latest user location
* @since 0.1.0
*/
private void updateLocation(final Location location) {
if (location == null) {
return;
}
staleStateManager.updateLatestLocationTime();
CameraPosition currentCameraPosition = mapboxMap.getCameraPosition();
boolean isGpsNorth = getCameraMode() == CameraMode.TRACKING_GPS_NORTH;
locationLayerAnimator.feedNewLocation(location, currentCameraPosition, isGpsNorth);
locationLayer.updateAccuracyRadius(location);
}
use of com.mapbox.mapboxsdk.camera.CameraPosition in project osm-contributor by jawg.
the class MapboxListener method listen.
/**
* Register the listener for the map
* @param mapboxMap
*/
public void listen(final MapboxMap mapboxMap, final MapView mapView) {
this.mapboxMap = mapboxMap;
// Listen on map click
mapboxMap.setOnMapClickListener(new MapboxMap.OnMapClickListener() {
@Override
public void onMapClick(@NonNull LatLng point) {
MapboxListener.this.onMapClick();
}
});
// Listen on marker click
mapboxMap.setOnMarkerClickListener(new MapboxMap.OnMarkerClickListener() {
@Override
public boolean onMarkerClick(@NonNull Marker marker) {
if (marker instanceof WayMarker) {
WayMarker wayMarker = (WayMarker) marker;
MapboxListener.this.onWayMarkerClick(wayMarker);
}
return false;
}
});
// Listen on location and zoom change
mapboxMap.setOnCameraChangeListener(new MapboxMap.OnCameraChangeListener() {
@Override
public void onCameraChange(CameraPosition position) {
// Location change, call the listener method
if (MapboxListener.this.position != null) {
if (!MapboxListener.this.position.target.equals(position.target)) {
onCameraPositionChange();
}
// Zoom change, call the listener method
if (MapboxListener.this.position.zoom != position.zoom) {
onCameraZoomChange(position.zoom);
}
}
MapboxListener.this.position = position;
}
});
final ScaleGestureDetector scaleGestureDetector = new ScaleGestureDetector(mapFragment.getActivity(), new ZoomAnimationGestureDetector() {
@Override
public void onZoomAnimationEnd(ValueAnimator animator) {
if (zoomValueAnimator != null && zoomValueAnimator.isRunning()) {
zoomValueAnimator.cancel();
}
zoomValueAnimator = animator;
zoomValueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator valueAnimator) {
CameraPosition position = mapboxMap.getCameraPosition();
mapboxMap.setCameraPosition(new CameraPosition.Builder().target(position.target).bearing(position.bearing).zoom(position.zoom + (Float) valueAnimator.getAnimatedValue()).build());
}
});
zoomValueAnimator.start();
}
});
mapView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
scaleGestureDetector.onTouchEvent(motionEvent);
return false;
}
});
// Listen on marker view click
mapboxMap.getMarkerViewManager().setOnMarkerViewClickListener(new MapboxMap.OnMarkerViewClickListener() {
@Override
public boolean onMarkerClick(@NonNull Marker marker, @NonNull View view, @NonNull MapboxMap.MarkerViewAdapter adapter) {
if (marker instanceof LocationMarkerView) {
LocationMarkerView locationMarker = (LocationMarkerView) marker;
MapboxListener.this.onLocationMarkerClick(locationMarker);
return false;
}
return false;
}
});
}
use of com.mapbox.mapboxsdk.camera.CameraPosition in project androidApp by InspectorIncognito.
the class MapboxUtil method animateCameraToNewCameraPosition.
public static void animateCameraToNewCameraPosition(CameraPosition newCameraPosition, MapboxMap mapboxMap) {
CameraPosition cameraPosition = mapboxMap.getCameraPosition();
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(createLatLngAnimator(cameraPosition.target, newCameraPosition.target, mapboxMap), createZoomAnimator(cameraPosition.zoom, Math.min(newCameraPosition.zoom, 16), mapboxMap));
animatorSet.start();
}
use of com.mapbox.mapboxsdk.camera.CameraPosition in project androidApp by InspectorIncognito.
the class RouterVectorMapFragment method zoomBound.
private void zoomBound(LatLng northEastPoint, LatLng southWestPoint) {
LatLngBounds.Builder latLngBoundsBuilder = new LatLngBounds.Builder();
latLngBoundsBuilder.include(northEastPoint);
latLngBoundsBuilder.include(southWestPoint);
CameraUpdate update = CameraUpdateFactory.newLatLngBounds(latLngBoundsBuilder.build(), 100, 100, 100, 100);
CameraPosition cameraPosition = update.getCameraPosition(mapboxMap);
if (cameraPosition == null) {
return;
}
mapboxMap.setCameraPosition(cameraPosition);
}
Aggregations