No olx and ol types for ol/interaction/PinchZoom
This commit is contained in:
@@ -46,31 +46,6 @@ olx.interaction.TranslateOptions.prototype.layers;
|
|||||||
olx.interaction.TranslateOptions.prototype.hitTolerance;
|
olx.interaction.TranslateOptions.prototype.hitTolerance;
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
/**
|
|
||||||
* @typedef {{
|
|
||||||
* duration: (number|undefined),
|
|
||||||
* constrainResolution: (boolean|undefined)
|
|
||||||
* }}
|
|
||||||
*/
|
|
||||||
olx.interaction.PinchZoomOptions;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Animation duration in milliseconds. Default is `400`.
|
|
||||||
* @type {number|undefined}
|
|
||||||
* @api
|
|
||||||
*/
|
|
||||||
olx.interaction.PinchZoomOptions.prototype.duration;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Zoom to the closest integer zoom level after the pinch gesture ends. Default is `false`.
|
|
||||||
* @type {boolean|undefined}
|
|
||||||
* @api
|
|
||||||
*/
|
|
||||||
olx.interaction.PinchZoomOptions.prototype.constrainResolution;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{handleDownEvent: (function(ol.MapBrowserPointerEvent):boolean|undefined),
|
* @typedef {{handleDownEvent: (function(ol.MapBrowserPointerEvent):boolean|undefined),
|
||||||
* handleDragEvent: (function(ol.MapBrowserPointerEvent)|undefined),
|
* handleDragEvent: (function(ol.MapBrowserPointerEvent)|undefined),
|
||||||
|
|||||||
@@ -14,13 +14,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @typedef {Object} interaction_PinchZoomOptions
|
|
||||||
* @property {number|undefined} duration Animation duration in milliseconds. Default is `400`.
|
|
||||||
* @property {boolean|undefined} constrainResolution Zoom to the closest integer zoom level after the pinch gesture ends. Default is `false`.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {Object} interaction_PointerOptions
|
* @typedef {Object} interaction_PointerOptions
|
||||||
* @property {(function(ol.MapBrowserPointerEvent):boolean|undefined)} handleDownEvent Function handling "down" events. If the function returns `true` then a drag
|
* @property {(function(ol.MapBrowserPointerEvent):boolean|undefined)} handleDownEvent Function handling "down" events. If the function returns `true` then a drag
|
||||||
|
|||||||
@@ -7,14 +7,23 @@ import {FALSE} from '../functions.js';
|
|||||||
import {zoom, zoomWithoutConstraints} from '../interaction/Interaction.js';
|
import {zoom, zoomWithoutConstraints} from '../interaction/Interaction.js';
|
||||||
import PointerInteraction, {centroid as centroidFromPointers} from '../interaction/Pointer.js';
|
import PointerInteraction, {centroid as centroidFromPointers} from '../interaction/Pointer.js';
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @typedef {Object} Options
|
||||||
|
* @property {number} [duration=400] Animation duration in milliseconds.
|
||||||
|
* @property {boolean} [constrainResolution=false] Zoom to the closest integer
|
||||||
|
* zoom level after the pinch gesture ends.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @classdesc
|
* @classdesc
|
||||||
* Allows the user to zoom the map by pinching with two fingers
|
* Allows the user to zoom the map by pinching with two fingers
|
||||||
* on a touch screen.
|
* on a touch screen.
|
||||||
*
|
*
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {ol.interaction.Pointer}
|
* @extends {module:ol/interaction/Pointer~Pointer}
|
||||||
* @param {olx.interaction.PinchZoomOptions=} opt_options Options.
|
* @param {module:ol/interaction/PinchZoom~Options=} opt_options Options.
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
const PinchZoom = function(opt_options) {
|
const PinchZoom = function(opt_options) {
|
||||||
@@ -63,8 +72,8 @@ inherits(PinchZoom, PointerInteraction);
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ol.MapBrowserPointerEvent} mapBrowserEvent Event.
|
* @param {module:ol/MapBrowserPointerEvent~MapBrowserPointerEvent} mapBrowserEvent Event.
|
||||||
* @this {ol.interaction.PinchZoom}
|
* @this {module:ol/interaction/PinchZoom~PinchZoom}
|
||||||
*/
|
*/
|
||||||
function handleDragEvent(mapBrowserEvent) {
|
function handleDragEvent(mapBrowserEvent) {
|
||||||
let scaleDelta = 1.0;
|
let scaleDelta = 1.0;
|
||||||
@@ -115,9 +124,9 @@ function handleDragEvent(mapBrowserEvent) {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ol.MapBrowserPointerEvent} mapBrowserEvent Event.
|
* @param {module:ol/MapBrowserPointerEvent~MapBrowserPointerEvent} mapBrowserEvent Event.
|
||||||
* @return {boolean} Stop drag sequence?
|
* @return {boolean} Stop drag sequence?
|
||||||
* @this {ol.interaction.PinchZoom}
|
* @this {module:ol/interaction/PinchZoom~PinchZoom}
|
||||||
*/
|
*/
|
||||||
function handleUpEvent(mapBrowserEvent) {
|
function handleUpEvent(mapBrowserEvent) {
|
||||||
if (this.targetPointers.length < 2) {
|
if (this.targetPointers.length < 2) {
|
||||||
@@ -142,9 +151,9 @@ function handleUpEvent(mapBrowserEvent) {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {ol.MapBrowserPointerEvent} mapBrowserEvent Event.
|
* @param {module:ol/MapBrowserPointerEvent/MapBrowserPointerEvent} mapBrowserEvent Event.
|
||||||
* @return {boolean} Start drag sequence?
|
* @return {boolean} Start drag sequence?
|
||||||
* @this {ol.interaction.PinchZoom}
|
* @this {module:ol/interaction/PinchZoom~PinchZoom}
|
||||||
*/
|
*/
|
||||||
function handleDownEvent(mapBrowserEvent) {
|
function handleDownEvent(mapBrowserEvent) {
|
||||||
if (this.targetPointers.length >= 2) {
|
if (this.targetPointers.length >= 2) {
|
||||||
|
|||||||
Reference in New Issue
Block a user