Control in the ol.control namespace.

This commit is contained in:
Tim Schaub
2012-09-24 17:15:30 +02:00
parent 1f9e2aa3c4
commit ed754fbfdf
3 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -12,7 +12,7 @@ goog.require('goog.events.EventType');
goog.require('goog.object');
goog.require('goog.style');
goog.require('ol.Collection');
goog.require('ol.Control');
goog.require('ol.control.Control');
goog.require('ol.CoverageArea');
goog.require('ol.layer.Layer');
goog.require('ol.MapProperty');
@@ -22,7 +22,7 @@ goog.require('ol.TileCoverageArea');
/**
* @constructor
* @extends {ol.Control}
* @extends {ol.control.Control}
* @param {ol.Map} map Map.
*/
ol.control.Attribution = function(map) {
@@ -77,7 +77,7 @@ ol.control.Attribution = function(map) {
this.handleMapLayersChanged();
};
goog.inherits(ol.control.Attribution, ol.Control);
goog.inherits(ol.control.Attribution, ol.control.Control);
/**