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,20 +2,20 @@ goog.provide('ol.interaction.KeyboardZoom');
goog.require('goog.events.KeyCodes');
goog.require('goog.events.KeyHandler.EventType');
goog.require('ol.Interaction');
goog.require('ol.interaction.Interaction');
goog.require('ol.interaction.ResolutionConstraintType');
/**
* @constructor
* @extends {ol.Interaction}
* @extends {ol.interaction.Interaction}
* @param {ol.interaction.Constraints} constraints Constraints.
*/
ol.interaction.KeyboardZoom = function(constraints) {
goog.base(this, constraints);
};
goog.inherits(ol.interaction.KeyboardZoom, ol.Interaction);
goog.inherits(ol.interaction.KeyboardZoom, ol.interaction.Interaction);
/**