mirror of
https://github.com/visgl/react-map-gl.git
synced 2026-01-25 16:02:50 +00:00
382 lines
11 KiB
JavaScript
382 lines
11 KiB
JavaScript
import {PerspectiveMercatorViewport} from 'viewport-mercator-project';
|
|
import assert from 'assert';
|
|
|
|
// MAPBOX LIMITS
|
|
export const MAPBOX_LIMITS = {
|
|
minZoom: 0,
|
|
maxZoom: 20,
|
|
minPitch: 0,
|
|
maxPitch: 60,
|
|
// defined by mapbox-gl
|
|
maxLatitude: 85.05113,
|
|
minLatitude: -85.05113
|
|
};
|
|
|
|
const defaultState = {
|
|
pitch: 0,
|
|
bearing: 0,
|
|
altitude: 1.5
|
|
};
|
|
|
|
/* Utils */
|
|
function mod(value, divisor) {
|
|
const modulus = value % divisor;
|
|
return modulus < 0 ? divisor + modulus : modulus;
|
|
}
|
|
|
|
function ensureFinite(value, fallbackValue) {
|
|
return Number.isFinite(value) ? value : fallbackValue;
|
|
}
|
|
|
|
export default class MapState {
|
|
|
|
constructor({
|
|
/** Mapbox viewport properties */
|
|
/** The width of the viewport */
|
|
width,
|
|
/** The height of the viewport */
|
|
height,
|
|
/** The latitude at the center of the viewport */
|
|
latitude,
|
|
/** The longitude at the center of the viewport */
|
|
longitude,
|
|
/** The tile zoom level of the map. */
|
|
zoom,
|
|
/** The bearing of the viewport in degrees */
|
|
bearing,
|
|
/** The pitch of the viewport in degrees */
|
|
pitch,
|
|
/**
|
|
* Specify the altitude of the viewport camera
|
|
* Unit: map heights, default 1.5
|
|
* Non-public API, see https://github.com/mapbox/mapbox-gl-js/issues/1137
|
|
*/
|
|
altitude,
|
|
|
|
/** Viewport constraints */
|
|
maxZoom,
|
|
minZoom,
|
|
maxPitch,
|
|
minPitch,
|
|
maxLatitude,
|
|
minLatitude,
|
|
|
|
/** Interaction states, required to calculate change during transform */
|
|
/* The point on map being grabbed when the operation first started */
|
|
startPanLngLat,
|
|
/* Center of the zoom when the operation first started */
|
|
startZoomLngLat,
|
|
/** Bearing when current perspective rotate operation started */
|
|
startBearing,
|
|
/** Pitch when current perspective rotate operation started */
|
|
startPitch,
|
|
/** Zoom when current zoom operation started */
|
|
startZoom
|
|
} = {}) {
|
|
assert(Number.isFinite(width), '`width` must be supplied');
|
|
assert(Number.isFinite(height), '`height` must be supplied');
|
|
assert(Number.isFinite(longitude), '`longitude` must be supplied');
|
|
assert(Number.isFinite(latitude), '`latitude` must be supplied');
|
|
assert(Number.isFinite(zoom), '`zoom` must be supplied');
|
|
|
|
this._viewportProps = this._applyConstraints({
|
|
width,
|
|
height,
|
|
latitude,
|
|
longitude,
|
|
zoom,
|
|
bearing: ensureFinite(bearing, defaultState.bearing),
|
|
pitch: ensureFinite(pitch, defaultState.pitch),
|
|
altitude: ensureFinite(altitude, defaultState.altitude),
|
|
maxZoom: ensureFinite(maxZoom, MAPBOX_LIMITS.maxZoom),
|
|
minZoom: ensureFinite(minZoom, MAPBOX_LIMITS.minZoom),
|
|
maxPitch: ensureFinite(maxPitch, MAPBOX_LIMITS.maxPitch),
|
|
minPitch: ensureFinite(minPitch, MAPBOX_LIMITS.minPitch),
|
|
maxLatitude: ensureFinite(maxLatitude, MAPBOX_LIMITS.maxLatitude),
|
|
minLatitude: ensureFinite(minLatitude, MAPBOX_LIMITS.minLatitude)
|
|
});
|
|
|
|
this._interactiveState = {
|
|
startPanLngLat,
|
|
startZoomLngLat,
|
|
startBearing,
|
|
startPitch,
|
|
startZoom
|
|
};
|
|
}
|
|
|
|
/* Public API */
|
|
|
|
getViewportProps() {
|
|
return this._viewportProps;
|
|
}
|
|
|
|
getInteractiveState() {
|
|
return this._interactiveState;
|
|
}
|
|
|
|
/**
|
|
* Start panning
|
|
* @param {[Number, Number]} pos - position on screen where the pointer grabs
|
|
*/
|
|
panStart({pos}) {
|
|
return this._getUpdatedMapState({
|
|
startPanLngLat: this._unproject(pos)
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Pan
|
|
* @param {[Number, Number]} pos - position on screen where the pointer is
|
|
* @param {[Number, Number], optional} startPos - where the pointer grabbed at
|
|
* the start of the operation. Must be supplied of `panStart()` was not called
|
|
*/
|
|
pan({pos, startPos}) {
|
|
const startPanLngLat = this._interactiveState.startPanLngLat || this._unproject(startPos);
|
|
|
|
if (!startPanLngLat) {
|
|
return this;
|
|
}
|
|
|
|
const [longitude, latitude] = this._calculateNewLngLat({startPanLngLat, pos});
|
|
|
|
return this._getUpdatedMapState({
|
|
longitude,
|
|
latitude
|
|
});
|
|
}
|
|
|
|
/**
|
|
* End panning
|
|
* Must call if `panStart()` was called
|
|
*/
|
|
panEnd() {
|
|
return this._getUpdatedMapState({
|
|
startPanLngLat: null
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Start rotating
|
|
* @param {[Number, Number]} pos - position on screen where the center is
|
|
*/
|
|
rotateStart({pos}) {
|
|
return this._getUpdatedMapState({
|
|
startBearing: this._viewportProps.bearing,
|
|
startPitch: this._viewportProps.pitch
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Rotate
|
|
* @param {Number} deltaScaleX - a number between [-1, 1] specifying the
|
|
* change to bearing.
|
|
* @param {Number} deltaScaleY - a number between [-1, 1] specifying the
|
|
* change to pitch. -1 sets to minPitch and 1 sets to maxPitch.
|
|
*/
|
|
rotate({deltaScaleX, deltaScaleY}) {
|
|
assert(deltaScaleX >= -1 && deltaScaleX <= 1,
|
|
'`deltaScaleX` must be a number between [-1, 1]');
|
|
assert(deltaScaleY >= -1 && deltaScaleY <= 1,
|
|
'`deltaScaleY` must be a number between [-1, 1]');
|
|
|
|
let {startBearing, startPitch} = this._interactiveState;
|
|
|
|
if (!Number.isFinite(startBearing)) {
|
|
startBearing = this._viewportProps.bearing;
|
|
}
|
|
if (!Number.isFinite(startPitch)) {
|
|
startPitch = this._viewportProps.pitch;
|
|
}
|
|
|
|
const {pitch, bearing} = this._calculateNewPitchAndBearing({
|
|
deltaScaleX,
|
|
deltaScaleY,
|
|
startBearing,
|
|
startPitch
|
|
});
|
|
|
|
return this._getUpdatedMapState({
|
|
bearing,
|
|
pitch
|
|
});
|
|
}
|
|
|
|
/**
|
|
* End rotating
|
|
* Must call if `rotateStart()` was called
|
|
*/
|
|
rotateEnd() {
|
|
return this._getUpdatedMapState({
|
|
startBearing: null,
|
|
startPitch: null
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Start zooming
|
|
* @param {[Number, Number]} pos - position on screen where the center is
|
|
*/
|
|
zoomStart({pos}) {
|
|
return this._getUpdatedMapState({
|
|
startZoomLngLat: this._unproject(pos),
|
|
startZoom: this._viewportProps.zoom
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Zoom
|
|
* @param {[Number, Number]} pos - position on screen where the current center is
|
|
* @param {[Number, Number]} startPos - the center position at
|
|
* the start of the operation. Must be supplied of `zoomStart()` was not called
|
|
* @param {Number} scale - a number between [0, 1] specifying the accumulated
|
|
* relative scale.
|
|
*/
|
|
zoom({pos, startPos, scale}) {
|
|
assert(scale > 0, '`scale` must be a positive number');
|
|
|
|
// Make sure we zoom around the current mouse position rather than map center
|
|
const startZoomLngLat = this._interactiveState.startZoomLngLat ||
|
|
this._unproject(startPos) || this._unproject(pos);
|
|
let {startZoom} = this._interactiveState;
|
|
|
|
if (!Number.isFinite(startZoom)) {
|
|
startZoom = this._viewportProps.zoom;
|
|
}
|
|
|
|
// take the start lnglat and put it where the mouse is down.
|
|
assert(startZoomLngLat, '`startZoomLngLat` prop is required ' +
|
|
'for zoom behavior to calculate where to position the map.');
|
|
|
|
const zoom = this._calculateNewZoom({scale, startZoom});
|
|
|
|
const zoomedViewport = new PerspectiveMercatorViewport(
|
|
Object.assign({}, this._viewportProps, {zoom})
|
|
);
|
|
const [longitude, latitude] = zoomedViewport.getLocationAtPoint({lngLat: startZoomLngLat, pos});
|
|
|
|
return this._getUpdatedMapState({
|
|
zoom,
|
|
longitude,
|
|
latitude
|
|
});
|
|
}
|
|
|
|
/**
|
|
* End zooming
|
|
* Must call if `zoomStart()` was called
|
|
*/
|
|
zoomEnd() {
|
|
return this._getUpdatedMapState({
|
|
startZoomLngLat: null,
|
|
startZoom: null
|
|
});
|
|
}
|
|
|
|
/* Private methods */
|
|
|
|
_getUpdatedMapState(newProps) {
|
|
// Update _viewportProps
|
|
return new MapState(Object.assign({}, this._viewportProps, this._interactiveState, newProps));
|
|
}
|
|
|
|
// Apply any constraints (mathematical or defined by _viewportProps) to map state
|
|
_applyConstraints(props) {
|
|
// Normalize degrees
|
|
props.longitude = mod(props.longitude + 180, 360) - 180;
|
|
props.bearing = mod(props.bearing + 180, 360) - 180;
|
|
|
|
// Ensure zoom is within specified range
|
|
const {maxZoom, minZoom, zoom} = props;
|
|
props.zoom = zoom > maxZoom ? maxZoom : zoom;
|
|
props.zoom = zoom < minZoom ? minZoom : zoom;
|
|
|
|
// Ensure pitch is within specified range
|
|
const {maxPitch, minPitch, pitch} = props;
|
|
|
|
props.pitch = pitch > maxPitch ? maxPitch : pitch;
|
|
props.pitch = pitch < minPitch ? minPitch : pitch;
|
|
|
|
// Constrain zoom and shift center at low zoom levels
|
|
const {height} = props;
|
|
let {latitudeRange: [topY, bottomY], viewport} = this._getLatitudeRange(props);
|
|
let shiftY = 0;
|
|
|
|
if (bottomY - topY < height) {
|
|
// Map height must not be smaller than viewport height
|
|
props.zoom += Math.log2(height / (bottomY - topY));
|
|
const newRange = this._getLatitudeRange(props);
|
|
[topY, bottomY] = newRange.latitudeRange;
|
|
viewport = newRange.viewport;
|
|
}
|
|
if (topY > 0) {
|
|
// Compensate for white gap on top
|
|
shiftY = topY;
|
|
} else if (bottomY < height) {
|
|
// Compensate for white gap on bottom
|
|
shiftY = bottomY - height;
|
|
}
|
|
if (shiftY) {
|
|
props.latitude = viewport.unproject([props.width / 2, height / 2 + shiftY])[1];
|
|
}
|
|
|
|
return props;
|
|
}
|
|
|
|
// Returns {viewport, latitudeRange: [topY, bottomY]} in non-perspective mode
|
|
_getLatitudeRange(props) {
|
|
const flatViewport = new PerspectiveMercatorViewport(Object.assign({}, props, {
|
|
pitch: 0,
|
|
bearing: 0
|
|
}));
|
|
return {
|
|
viewport: flatViewport,
|
|
latitudeRange: [
|
|
flatViewport.project([props.longitude, props.maxLatitude])[1],
|
|
flatViewport.project([props.longitude, props.minLatitude])[1]
|
|
]
|
|
};
|
|
}
|
|
|
|
_unproject(pos) {
|
|
const viewport = new PerspectiveMercatorViewport(this._viewportProps);
|
|
return pos && viewport.unproject(pos, {topLeft: false});
|
|
}
|
|
|
|
// Calculate a new lnglat based on pixel dragging position
|
|
_calculateNewLngLat({startPanLngLat, pos}) {
|
|
const viewport = new PerspectiveMercatorViewport(this._viewportProps);
|
|
return viewport.getLocationAtPoint({lngLat: startPanLngLat, pos});
|
|
}
|
|
|
|
// Calculates new zoom
|
|
_calculateNewZoom({scale, startZoom}) {
|
|
const {maxZoom, minZoom} = this._viewportProps;
|
|
let zoom = startZoom + Math.log2(scale);
|
|
zoom = zoom > maxZoom ? maxZoom : zoom;
|
|
zoom = zoom < minZoom ? minZoom : zoom;
|
|
return zoom;
|
|
}
|
|
|
|
// Calculates a new pitch and bearing from a position (coming from an event)
|
|
_calculateNewPitchAndBearing({deltaScaleX, deltaScaleY, startBearing, startPitch}) {
|
|
const {minPitch, maxPitch} = this._viewportProps;
|
|
|
|
const bearing = startBearing + 180 * deltaScaleX;
|
|
let pitch = startPitch;
|
|
if (deltaScaleY > 0) {
|
|
// Gradually increase pitch
|
|
pitch = startPitch + deltaScaleY * (maxPitch - startPitch);
|
|
} else if (deltaScaleY < 0) {
|
|
// Gradually decrease pitch
|
|
pitch = startPitch - deltaScaleY * (minPitch - startPitch);
|
|
}
|
|
|
|
return {
|
|
pitch,
|
|
bearing
|
|
};
|
|
}
|
|
|
|
}
|