Configure ol.interaction.KeyboardPan with options
This commit is contained in:
@@ -203,6 +203,7 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {Object} ol.interaction.KeyboardPanOptions
|
* @typedef {Object} ol.interaction.KeyboardPanOptions
|
||||||
|
* @property {ol.interaction.ConditionType|undefined} condition Condition.
|
||||||
* @property {number|undefined} pixelDelta Pixel delta
|
* @property {number|undefined} pixelDelta Pixel delta
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|||||||
@@ -72,8 +72,7 @@ ol.interaction.defaults = function(opt_options, opt_interactions) {
|
|||||||
var keyboard = goog.isDef(options.keyboard) ?
|
var keyboard = goog.isDef(options.keyboard) ?
|
||||||
options.keyboard : true;
|
options.keyboard : true;
|
||||||
if (keyboard) {
|
if (keyboard) {
|
||||||
interactions.push(new ol.interaction.KeyboardPan(
|
interactions.push(new ol.interaction.KeyboardPan());
|
||||||
ol.interaction.condition.noModifierKeys));
|
|
||||||
interactions.push(new ol.interaction.KeyboardZoom(
|
interactions.push(new ol.interaction.KeyboardZoom(
|
||||||
ol.interaction.condition.noModifierKeys));
|
ol.interaction.condition.noModifierKeys));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ goog.require('ol.View2D');
|
|||||||
goog.require('ol.coordinate');
|
goog.require('ol.coordinate');
|
||||||
goog.require('ol.interaction.ConditionType');
|
goog.require('ol.interaction.ConditionType');
|
||||||
goog.require('ol.interaction.Interaction');
|
goog.require('ol.interaction.Interaction');
|
||||||
|
goog.require('ol.interaction.condition');
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -21,10 +22,9 @@ ol.interaction.KEYBOARD_PAN_DURATION = 100;
|
|||||||
/**
|
/**
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {ol.interaction.Interaction}
|
* @extends {ol.interaction.Interaction}
|
||||||
* @param {ol.interaction.ConditionType} condition Condition.
|
|
||||||
* @param {ol.interaction.KeyboardPanOptions=} opt_options Options.
|
* @param {ol.interaction.KeyboardPanOptions=} opt_options Options.
|
||||||
*/
|
*/
|
||||||
ol.interaction.KeyboardPan = function(condition, opt_options) {
|
ol.interaction.KeyboardPan = function(opt_options) {
|
||||||
|
|
||||||
goog.base(this);
|
goog.base(this);
|
||||||
|
|
||||||
@@ -34,7 +34,8 @@ ol.interaction.KeyboardPan = function(condition, opt_options) {
|
|||||||
* @private
|
* @private
|
||||||
* @type {ol.interaction.ConditionType}
|
* @type {ol.interaction.ConditionType}
|
||||||
*/
|
*/
|
||||||
this.condition_ = condition;
|
this.condition_ = goog.isDef(options.condition) ?
|
||||||
|
options.condition : ol.interaction.condition.noModifierKeys;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @private
|
* @private
|
||||||
|
|||||||
Reference in New Issue
Block a user