s/ol3/ol/

This commit is contained in:
Tom Payne
2012-09-24 14:21:41 +02:00
parent 6737220b83
commit f8c31ba45c
112 changed files with 3755 additions and 3755 deletions

33
src/ol/control/control.js Normal file
View File

@@ -0,0 +1,33 @@
goog.provide('ol.Control');
goog.require('ol.Map');
/**
* @constructor
* @param {ol.Map} map Map.
*/
ol.Control = function(map) {
/**
* @private
* @type {ol.Map}
*/
this.map_ = map;
};
/**
* @return {Element} Element.
*/
ol.Control.prototype.getElement = goog.abstractMethod;
/**
* @return {ol.Map} Map.
*/
ol.Control.prototype.getMap = function() {
return this.map_;
};