You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
3.4 KiB
140 lines
3.4 KiB
/**
|
|
* @module ol/interaction/PinchZoom
|
|
*/
|
|
import PointerInteraction, {
|
|
centroid as centroidFromPointers,
|
|
} from './Pointer.js';
|
|
import {FALSE} from '../functions.js';
|
|
|
|
/**
|
|
* @typedef {Object} Options
|
|
* @property {number} [duration=400] Animation duration in milliseconds.
|
|
*/
|
|
|
|
/**
|
|
* @classdesc
|
|
* Allows the user to zoom the map by pinching with two fingers
|
|
* on a touch screen.
|
|
* @api
|
|
*/
|
|
class PinchZoom extends PointerInteraction {
|
|
/**
|
|
* @param {Options} [options] Options.
|
|
*/
|
|
constructor(options) {
|
|
options = options ? options : {};
|
|
|
|
const pointerOptions = /** @type {import("./Pointer.js").Options} */ (
|
|
options
|
|
);
|
|
|
|
if (!pointerOptions.stopDown) {
|
|
pointerOptions.stopDown = FALSE;
|
|
}
|
|
|
|
super(pointerOptions);
|
|
|
|
/**
|
|
* @private
|
|
* @type {import("../coordinate.js").Coordinate}
|
|
*/
|
|
this.anchor_ = null;
|
|
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.duration_ = options.duration !== undefined ? options.duration : 400;
|
|
|
|
/**
|
|
* @private
|
|
* @type {number|undefined}
|
|
*/
|
|
this.lastDistance_ = undefined;
|
|
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.lastScaleDelta_ = 1;
|
|
}
|
|
|
|
/**
|
|
* Handle pointer drag events.
|
|
* @param {import("../MapBrowserEvent.js").default} mapBrowserEvent Event.
|
|
*/
|
|
handleDragEvent(mapBrowserEvent) {
|
|
let scaleDelta = 1.0;
|
|
|
|
const touch0 = this.targetPointers[0];
|
|
const touch1 = this.targetPointers[1];
|
|
const dx = touch0.clientX - touch1.clientX;
|
|
const dy = touch0.clientY - touch1.clientY;
|
|
|
|
// distance between touches
|
|
const distance = Math.sqrt(dx * dx + dy * dy);
|
|
|
|
if (this.lastDistance_ !== undefined) {
|
|
scaleDelta = this.lastDistance_ / distance;
|
|
}
|
|
this.lastDistance_ = distance;
|
|
|
|
const map = mapBrowserEvent.map;
|
|
const view = map.getView();
|
|
|
|
if (scaleDelta != 1.0) {
|
|
this.lastScaleDelta_ = scaleDelta;
|
|
}
|
|
|
|
// scale anchor point.
|
|
const viewportPosition = map.getViewport().getBoundingClientRect();
|
|
const centroid = centroidFromPointers(this.targetPointers);
|
|
centroid[0] -= viewportPosition.left;
|
|
centroid[1] -= viewportPosition.top;
|
|
this.anchor_ = map.getCoordinateFromPixelInternal(centroid);
|
|
|
|
// scale, bypass the resolution constraint
|
|
map.render();
|
|
view.adjustResolutionInternal(scaleDelta, this.anchor_);
|
|
}
|
|
|
|
/**
|
|
* Handle pointer up events.
|
|
* @param {import("../MapBrowserEvent.js").default} mapBrowserEvent Event.
|
|
* @return {boolean} If the event was consumed.
|
|
*/
|
|
handleUpEvent(mapBrowserEvent) {
|
|
if (this.targetPointers.length < 2) {
|
|
const map = mapBrowserEvent.map;
|
|
const view = map.getView();
|
|
const direction = this.lastScaleDelta_ > 1 ? 1 : -1;
|
|
view.endInteraction(this.duration_, direction);
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handle pointer down events.
|
|
* @param {import("../MapBrowserEvent.js").default} mapBrowserEvent Event.
|
|
* @return {boolean} If the event was consumed.
|
|
*/
|
|
handleDownEvent(mapBrowserEvent) {
|
|
if (this.targetPointers.length >= 2) {
|
|
const map = mapBrowserEvent.map;
|
|
this.anchor_ = null;
|
|
this.lastDistance_ = undefined;
|
|
this.lastScaleDelta_ = 1;
|
|
if (!this.handlingDownUpSequence) {
|
|
map.getView().beginInteraction();
|
|
}
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
export default PinchZoom;
|