Transformed

This commit is contained in:
Tim Schaub
2017-12-11 16:29:33 -07:00
parent 1cdb6a66f0
commit 7f47883c48
737 changed files with 22216 additions and 21609 deletions
+30 -28
View File
@@ -1,13 +1,13 @@
goog.provide('ol.interaction.DragPan');
goog.require('ol');
goog.require('ol.ViewHint');
goog.require('ol.coordinate');
goog.require('ol.easing');
goog.require('ol.events.condition');
goog.require('ol.functions');
goog.require('ol.interaction.Pointer');
/**
* @module ol/interaction/DragPan
*/
import _ol_ from '../index.js';
import _ol_ViewHint_ from '../ViewHint.js';
import _ol_coordinate_ from '../coordinate.js';
import _ol_easing_ from '../easing.js';
import _ol_events_condition_ from '../events/condition.js';
import _ol_functions_ from '../functions.js';
import _ol_interaction_Pointer_ from '../interaction/Pointer.js';
/**
* @classdesc
@@ -18,12 +18,12 @@ goog.require('ol.interaction.Pointer');
* @param {olx.interaction.DragPanOptions=} opt_options Options.
* @api
*/
ol.interaction.DragPan = function(opt_options) {
var _ol_interaction_DragPan_ = function(opt_options) {
ol.interaction.Pointer.call(this, {
handleDownEvent: ol.interaction.DragPan.handleDownEvent_,
handleDragEvent: ol.interaction.DragPan.handleDragEvent_,
handleUpEvent: ol.interaction.DragPan.handleUpEvent_
_ol_interaction_Pointer_.call(this, {
handleDownEvent: _ol_interaction_DragPan_.handleDownEvent_,
handleDragEvent: _ol_interaction_DragPan_.handleDragEvent_,
handleUpEvent: _ol_interaction_DragPan_.handleUpEvent_
});
var options = opt_options ? opt_options : {};
@@ -49,7 +49,7 @@ ol.interaction.DragPan = function(opt_options) {
* @type {ol.EventsConditionType}
*/
this.condition_ = options.condition ?
options.condition : ol.events.condition.noModifierKeys;
options.condition : _ol_events_condition_.noModifierKeys;
/**
* @private
@@ -58,7 +58,8 @@ ol.interaction.DragPan = function(opt_options) {
this.noKinetic_ = false;
};
ol.inherits(ol.interaction.DragPan, ol.interaction.Pointer);
_ol_.inherits(_ol_interaction_DragPan_, _ol_interaction_Pointer_);
/**
@@ -66,10 +67,10 @@ ol.inherits(ol.interaction.DragPan, ol.interaction.Pointer);
* @this {ol.interaction.DragPan}
* @private
*/
ol.interaction.DragPan.handleDragEvent_ = function(mapBrowserEvent) {
_ol_interaction_DragPan_.handleDragEvent_ = function(mapBrowserEvent) {
var targetPointers = this.targetPointers;
var centroid =
ol.interaction.Pointer.centroid(targetPointers);
_ol_interaction_Pointer_.centroid(targetPointers);
if (targetPointers.length == this.lastPointersCount_) {
if (this.kinetic_) {
this.kinetic_.update(centroid[0], centroid[1]);
@@ -81,9 +82,9 @@ ol.interaction.DragPan.handleDragEvent_ = function(mapBrowserEvent) {
var view = map.getView();
var viewState = view.getState();
var center = [deltaX, deltaY];
ol.coordinate.scale(center, viewState.resolution);
ol.coordinate.rotate(center, viewState.rotation);
ol.coordinate.add(center, viewState.center);
_ol_coordinate_.scale(center, viewState.resolution);
_ol_coordinate_.rotate(center, viewState.rotation);
_ol_coordinate_.add(center, viewState.center);
center = view.constrainCenter(center);
view.setCenter(center);
}
@@ -103,7 +104,7 @@ ol.interaction.DragPan.handleDragEvent_ = function(mapBrowserEvent) {
* @this {ol.interaction.DragPan}
* @private
*/
ol.interaction.DragPan.handleUpEvent_ = function(mapBrowserEvent) {
_ol_interaction_DragPan_.handleUpEvent_ = function(mapBrowserEvent) {
var map = mapBrowserEvent.map;
var view = map.getView();
if (this.targetPointers.length === 0) {
@@ -119,10 +120,10 @@ ol.interaction.DragPan.handleUpEvent_ = function(mapBrowserEvent) {
view.animate({
center: view.constrainCenter(dest),
duration: 500,
easing: ol.easing.easeOut
easing: _ol_easing_.easeOut
});
}
view.setHint(ol.ViewHint.INTERACTING, -1);
view.setHint(_ol_ViewHint_.INTERACTING, -1);
return false;
} else {
if (this.kinetic_) {
@@ -142,13 +143,13 @@ ol.interaction.DragPan.handleUpEvent_ = function(mapBrowserEvent) {
* @this {ol.interaction.DragPan}
* @private
*/
ol.interaction.DragPan.handleDownEvent_ = function(mapBrowserEvent) {
_ol_interaction_DragPan_.handleDownEvent_ = function(mapBrowserEvent) {
if (this.targetPointers.length > 0 && this.condition_(mapBrowserEvent)) {
var map = mapBrowserEvent.map;
var view = map.getView();
this.lastCentroid = null;
if (!this.handlingDownUpSequence) {
view.setHint(ol.ViewHint.INTERACTING, 1);
view.setHint(_ol_ViewHint_.INTERACTING, 1);
}
// stop any current animation
if (view.getAnimating()) {
@@ -170,4 +171,5 @@ ol.interaction.DragPan.handleDownEvent_ = function(mapBrowserEvent) {
/**
* @inheritDoc
*/
ol.interaction.DragPan.prototype.shouldStopEvent = ol.functions.FALSE;
_ol_interaction_DragPan_.prototype.shouldStopEvent = _ol_functions_.FALSE;
export default _ol_interaction_DragPan_;