Interaction in ol.interaction namespace.

This commit is contained in:
Tim Schaub
2012-09-24 17:18:21 +02:00
parent ed754fbfdf
commit d51cd1c395
8 changed files with 27 additions and 27 deletions
+3 -3
View File
@@ -2,14 +2,14 @@ goog.provide('ol.interaction.KeyboardPan');
goog.require('goog.events.KeyCodes');
goog.require('goog.events.KeyHandler.EventType');
goog.require('ol.Interaction');
goog.require('ol.interaction.Interaction');
goog.require('ol.interaction.Constraints');
/**
* @constructor
* @extends {ol.Interaction}
* @extends {ol.interaction.Interaction}
* @param {ol.interaction.Constraints} constraints Constraints.
* @param {number} pixelDelta Pixel delta.
*/
@@ -24,7 +24,7 @@ ol.interaction.KeyboardPan = function(constraints, pixelDelta) {
this.pixelDelta_ = pixelDelta;
};
goog.inherits(ol.interaction.KeyboardPan, ol.Interaction);
goog.inherits(ol.interaction.KeyboardPan, ol.interaction.Interaction);
/**