Add experimental controls infrastructure, thanks @elemoine

This commit is contained in:
Tom Payne
2012-07-18 13:32:22 +02:00
parent 1af79ede29
commit c6343ed2bc
11 changed files with 214 additions and 381 deletions
+17
View File
@@ -0,0 +1,17 @@
goog.provide('ol.Control');
goog.require('ol.MapBrowserEvent');
/**
* @constructor
*/
ol.Control = function() {
};
/**
* @param {ol.MapBrowserEvent} event Map browser event.
*/
ol.Control.prototype.handleMapBrowserEvent = goog.abstractMethod;