Rename ol.interaction.InteractionProperty to ol.interaction.Interaction.Property

This commit is contained in:
Frederic Junod
2016-10-13 11:49:54 +02:00
parent 189a7f1759
commit 5a3794752a
3 changed files with 13 additions and 13 deletions
+1
View File
@@ -27,6 +27,7 @@ A number of internal types have been renamed. This will not affect those who us
* rename `ol.OverlayProperty` to `ol.Overlay.Property` * rename `ol.OverlayProperty` to `ol.Overlay.Property`
* rename `ol.control.MousePositionProperty` to `ol.control.MousePosition.Property` * rename `ol.control.MousePositionProperty` to `ol.control.MousePosition.Property`
* rename `ol.format.IGCZ` to `ol.format.IGC.Z` * rename `ol.format.IGCZ` to `ol.format.IGC.Z`
* rename `ol.interaction.InteractionProperty` to `ol.interaction.Interaction.Property`
* rename `ol.interaction.DrawMode` to `ol.interaction.Draw.Mode` * rename `ol.interaction.DrawMode` to `ol.interaction.Draw.Mode`
* rename `ol.interaction.DrawEvent` to `ol.interaction.Draw.Event` * rename `ol.interaction.DrawEvent` to `ol.interaction.Draw.Event`
* rename `ol.interaction.DrawEventType` to `ol.interaction.Draw.EventType` * rename `ol.interaction.DrawEventType` to `ol.interaction.Draw.EventType`
+2 -2
View File
@@ -17,7 +17,7 @@ goog.require('ol.geom.MultiPoint');
goog.require('ol.geom.MultiPolygon'); goog.require('ol.geom.MultiPolygon');
goog.require('ol.geom.Point'); goog.require('ol.geom.Point');
goog.require('ol.geom.Polygon'); goog.require('ol.geom.Polygon');
goog.require('ol.interaction.InteractionProperty'); goog.require('ol.interaction.Interaction');
goog.require('ol.interaction.Pointer'); goog.require('ol.interaction.Pointer');
goog.require('ol.layer.Vector'); goog.require('ol.layer.Vector');
goog.require('ol.source.Vector'); goog.require('ol.source.Vector');
@@ -255,7 +255,7 @@ ol.interaction.Draw = function(options) {
options.freehandCondition : ol.events.condition.shiftKeyOnly; options.freehandCondition : ol.events.condition.shiftKeyOnly;
ol.events.listen(this, ol.events.listen(this,
ol.Object.getChangeEventType(ol.interaction.InteractionProperty.ACTIVE), ol.Object.getChangeEventType(ol.interaction.Interaction.Property.ACTIVE),
this.updateState_, this); this.updateState_, this);
}; };
+10 -11
View File
@@ -1,7 +1,6 @@
// FIXME factor out key precondition (shift et. al) // FIXME factor out key precondition (shift et. al)
goog.provide('ol.interaction.Interaction'); goog.provide('ol.interaction.Interaction');
goog.provide('ol.interaction.InteractionProperty');
goog.require('ol'); goog.require('ol');
goog.require('ol.Object'); goog.require('ol.Object');
@@ -9,14 +8,6 @@ goog.require('ol.animation');
goog.require('ol.easing'); goog.require('ol.easing');
/**
* @enum {string}
*/
ol.interaction.InteractionProperty = {
ACTIVE: 'active'
};
/** /**
* @classdesc * @classdesc
* Abstract base class; normally only used for creating subclasses and not * Abstract base class; normally only used for creating subclasses and not
@@ -63,7 +54,7 @@ ol.inherits(ol.interaction.Interaction, ol.Object);
*/ */
ol.interaction.Interaction.prototype.getActive = function() { ol.interaction.Interaction.prototype.getActive = function() {
return /** @type {boolean} */ ( return /** @type {boolean} */ (
this.get(ol.interaction.InteractionProperty.ACTIVE)); this.get(ol.interaction.Interaction.Property.ACTIVE));
}; };
@@ -84,7 +75,7 @@ ol.interaction.Interaction.prototype.getMap = function() {
* @api * @api
*/ */
ol.interaction.Interaction.prototype.setActive = function(active) { ol.interaction.Interaction.prototype.setActive = function(active) {
this.set(ol.interaction.InteractionProperty.ACTIVE, active); this.set(ol.interaction.Interaction.Property.ACTIVE, active);
}; };
@@ -238,3 +229,11 @@ ol.interaction.Interaction.zoomWithoutConstraints = function(map, view, resoluti
view.setResolution(resolution); view.setResolution(resolution);
} }
}; };
/**
* @enum {string}
*/
ol.interaction.Interaction.Property = {
ACTIVE: 'active'
};