308 lines
7.2 KiB
JavaScript
308 lines
7.2 KiB
JavaScript
/**
|
|
* @module ol/interaction/MouseWheelZoom
|
|
*/
|
|
import {inherits} from '../index.js';
|
|
import ViewHint from '../ViewHint.js';
|
|
import {always} from '../events/condition.js';
|
|
import {easeOut} from '../easing.js';
|
|
import EventType from '../events/EventType.js';
|
|
import {DEVICE_PIXEL_RATIO, FIREFOX, SAFARI} from '../has.js';
|
|
import Interaction from '../interaction/Interaction.js';
|
|
import {clamp} from '../math.js';
|
|
|
|
|
|
/**
|
|
* Maximum mouse wheel delta.
|
|
* @type {number}
|
|
*/
|
|
const MAX_DELTA = 1;
|
|
|
|
|
|
/**
|
|
* @classdesc
|
|
* Allows the user to zoom the map by scrolling the mouse wheel.
|
|
*
|
|
* @constructor
|
|
* @extends {ol.interaction.Interaction}
|
|
* @param {olx.interaction.MouseWheelZoomOptions=} opt_options Options.
|
|
* @api
|
|
*/
|
|
const MouseWheelZoom = function(opt_options) {
|
|
|
|
Interaction.call(this, {
|
|
handleEvent: MouseWheelZoom.handleEvent
|
|
});
|
|
|
|
const options = opt_options || {};
|
|
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.delta_ = 0;
|
|
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.duration_ = options.duration !== undefined ? options.duration : 250;
|
|
|
|
/**
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.timeout_ = options.timeout !== undefined ? options.timeout : 80;
|
|
|
|
/**
|
|
* @private
|
|
* @type {boolean}
|
|
*/
|
|
this.useAnchor_ = options.useAnchor !== undefined ? options.useAnchor : true;
|
|
|
|
/**
|
|
* @private
|
|
* @type {boolean}
|
|
*/
|
|
this.constrainResolution_ = options.constrainResolution || false;
|
|
|
|
/**
|
|
* @private
|
|
* @type {ol.EventsConditionType}
|
|
*/
|
|
this.condition_ = options.condition ? options.condition : always;
|
|
|
|
/**
|
|
* @private
|
|
* @type {?ol.Coordinate}
|
|
*/
|
|
this.lastAnchor_ = null;
|
|
|
|
/**
|
|
* @private
|
|
* @type {number|undefined}
|
|
*/
|
|
this.startTime_ = undefined;
|
|
|
|
/**
|
|
* @private
|
|
* @type {number|undefined}
|
|
*/
|
|
this.timeoutId_ = undefined;
|
|
|
|
/**
|
|
* @private
|
|
* @type {ol.interaction.MouseWheelZoom.Mode_|undefined}
|
|
*/
|
|
this.mode_ = undefined;
|
|
|
|
/**
|
|
* Trackpad events separated by this delay will be considered separate
|
|
* interactions.
|
|
* @type {number}
|
|
*/
|
|
this.trackpadEventGap_ = 400;
|
|
|
|
/**
|
|
* @type {number|undefined}
|
|
*/
|
|
this.trackpadTimeoutId_ = undefined;
|
|
|
|
/**
|
|
* The number of delta values per zoom level
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.trackpadDeltaPerZoom_ = 300;
|
|
|
|
/**
|
|
* The zoom factor by which scroll zooming is allowed to exceed the limits.
|
|
* @private
|
|
* @type {number}
|
|
*/
|
|
this.trackpadZoomBuffer_ = 1.5;
|
|
|
|
};
|
|
|
|
inherits(MouseWheelZoom, Interaction);
|
|
|
|
|
|
/**
|
|
* Handles the {@link ol.MapBrowserEvent map browser event} (if it was a
|
|
* mousewheel-event) and eventually zooms the map.
|
|
* @param {ol.MapBrowserEvent} mapBrowserEvent Map browser event.
|
|
* @return {boolean} Allow event propagation.
|
|
* @this {ol.interaction.MouseWheelZoom}
|
|
* @api
|
|
*/
|
|
MouseWheelZoom.handleEvent = function(mapBrowserEvent) {
|
|
if (!this.condition_(mapBrowserEvent)) {
|
|
return true;
|
|
}
|
|
const type = mapBrowserEvent.type;
|
|
if (type !== EventType.WHEEL && type !== EventType.MOUSEWHEEL) {
|
|
return true;
|
|
}
|
|
|
|
mapBrowserEvent.preventDefault();
|
|
|
|
const map = mapBrowserEvent.map;
|
|
const wheelEvent = /** @type {WheelEvent} */ (mapBrowserEvent.originalEvent);
|
|
|
|
if (this.useAnchor_) {
|
|
this.lastAnchor_ = mapBrowserEvent.coordinate;
|
|
}
|
|
|
|
// Delta normalisation inspired by
|
|
// https://github.com/mapbox/mapbox-gl-js/blob/001c7b9/js/ui/handler/scroll_zoom.js
|
|
let delta;
|
|
if (mapBrowserEvent.type == EventType.WHEEL) {
|
|
delta = wheelEvent.deltaY;
|
|
if (FIREFOX &&
|
|
wheelEvent.deltaMode === WheelEvent.DOM_DELTA_PIXEL) {
|
|
delta /= DEVICE_PIXEL_RATIO;
|
|
}
|
|
if (wheelEvent.deltaMode === WheelEvent.DOM_DELTA_LINE) {
|
|
delta *= 40;
|
|
}
|
|
} else if (mapBrowserEvent.type == EventType.MOUSEWHEEL) {
|
|
delta = -wheelEvent.wheelDeltaY;
|
|
if (SAFARI) {
|
|
delta /= 3;
|
|
}
|
|
}
|
|
|
|
if (delta === 0) {
|
|
return false;
|
|
}
|
|
|
|
const now = Date.now();
|
|
|
|
if (this.startTime_ === undefined) {
|
|
this.startTime_ = now;
|
|
}
|
|
|
|
if (!this.mode_ || now - this.startTime_ > this.trackpadEventGap_) {
|
|
this.mode_ = Math.abs(delta) < 4 ?
|
|
MouseWheelZoom.Mode_.TRACKPAD :
|
|
MouseWheelZoom.Mode_.WHEEL;
|
|
}
|
|
|
|
if (this.mode_ === MouseWheelZoom.Mode_.TRACKPAD) {
|
|
const view = map.getView();
|
|
if (this.trackpadTimeoutId_) {
|
|
clearTimeout(this.trackpadTimeoutId_);
|
|
} else {
|
|
view.setHint(ViewHint.INTERACTING, 1);
|
|
}
|
|
this.trackpadTimeoutId_ = setTimeout(this.decrementInteractingHint_.bind(this), this.trackpadEventGap_);
|
|
let resolution = view.getResolution() * Math.pow(2, delta / this.trackpadDeltaPerZoom_);
|
|
const minResolution = view.getMinResolution();
|
|
const maxResolution = view.getMaxResolution();
|
|
let rebound = 0;
|
|
if (resolution < minResolution) {
|
|
resolution = Math.max(resolution, minResolution / this.trackpadZoomBuffer_);
|
|
rebound = 1;
|
|
} else if (resolution > maxResolution) {
|
|
resolution = Math.min(resolution, maxResolution * this.trackpadZoomBuffer_);
|
|
rebound = -1;
|
|
}
|
|
if (this.lastAnchor_) {
|
|
const center = view.calculateCenterZoom(resolution, this.lastAnchor_);
|
|
view.setCenter(view.constrainCenter(center));
|
|
}
|
|
view.setResolution(resolution);
|
|
|
|
if (rebound === 0 && this.constrainResolution_) {
|
|
view.animate({
|
|
resolution: view.constrainResolution(resolution, delta > 0 ? -1 : 1),
|
|
easing: easeOut,
|
|
anchor: this.lastAnchor_,
|
|
duration: this.duration_
|
|
});
|
|
}
|
|
|
|
if (rebound > 0) {
|
|
view.animate({
|
|
resolution: minResolution,
|
|
easing: easeOut,
|
|
anchor: this.lastAnchor_,
|
|
duration: 500
|
|
});
|
|
} else if (rebound < 0) {
|
|
view.animate({
|
|
resolution: maxResolution,
|
|
easing: easeOut,
|
|
anchor: this.lastAnchor_,
|
|
duration: 500
|
|
});
|
|
}
|
|
this.startTime_ = now;
|
|
return false;
|
|
}
|
|
|
|
this.delta_ += delta;
|
|
|
|
const timeLeft = Math.max(this.timeout_ - (now - this.startTime_), 0);
|
|
|
|
clearTimeout(this.timeoutId_);
|
|
this.timeoutId_ = setTimeout(this.handleWheelZoom_.bind(this, map), timeLeft);
|
|
|
|
return false;
|
|
};
|
|
|
|
|
|
/**
|
|
* @private
|
|
*/
|
|
MouseWheelZoom.prototype.decrementInteractingHint_ = function() {
|
|
this.trackpadTimeoutId_ = undefined;
|
|
const view = this.getMap().getView();
|
|
view.setHint(ViewHint.INTERACTING, -1);
|
|
};
|
|
|
|
|
|
/**
|
|
* @private
|
|
* @param {ol.PluggableMap} map Map.
|
|
*/
|
|
MouseWheelZoom.prototype.handleWheelZoom_ = function(map) {
|
|
const view = map.getView();
|
|
if (view.getAnimating()) {
|
|
view.cancelAnimations();
|
|
}
|
|
const maxDelta = MAX_DELTA;
|
|
const delta = clamp(this.delta_, -maxDelta, maxDelta);
|
|
Interaction.zoomByDelta(view, -delta, this.lastAnchor_,
|
|
this.duration_);
|
|
this.mode_ = undefined;
|
|
this.delta_ = 0;
|
|
this.lastAnchor_ = null;
|
|
this.startTime_ = undefined;
|
|
this.timeoutId_ = undefined;
|
|
};
|
|
|
|
|
|
/**
|
|
* Enable or disable using the mouse's location as an anchor when zooming
|
|
* @param {boolean} useAnchor true to zoom to the mouse's location, false
|
|
* to zoom to the center of the map
|
|
* @api
|
|
*/
|
|
MouseWheelZoom.prototype.setMouseAnchor = function(useAnchor) {
|
|
this.useAnchor_ = useAnchor;
|
|
if (!useAnchor) {
|
|
this.lastAnchor_ = null;
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* @enum {string}
|
|
* @private
|
|
*/
|
|
MouseWheelZoom.Mode_ = {
|
|
TRACKPAD: 'trackpad',
|
|
WHEEL: 'wheel'
|
|
};
|
|
export default MouseWheelZoom;
|