Do not rename handleMapBrowserEvent internally
This commit is contained in:
committed by
Björn Harrtell
parent
4c63609749
commit
c4d6e04e4b
@@ -122,6 +122,7 @@ oli.control.Control = function() {};
|
|||||||
oli.control.Control.prototype.setMap = function(map) {};
|
oli.control.Control.prototype.setMap = function(map) {};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @type {Object}
|
* @type {Object}
|
||||||
*/
|
*/
|
||||||
@@ -129,6 +130,20 @@ oli.interaction;
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @interface
|
||||||
|
*/
|
||||||
|
oli.interaction.Interaction = function() {};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {ol.MapBrowserEvent} mapBrowserEvent Map browser event.
|
||||||
|
* @return {boolean} Whether the map browser event should continue
|
||||||
|
* through the chain of interactions. false means stop, true
|
||||||
|
* means continue.
|
||||||
|
*/
|
||||||
|
oli.interaction.Interaction.prototype.handleMapBrowserEvent = function(e) {};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @interface
|
* @interface
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ ol.interaction.InteractionProperty = {
|
|||||||
*
|
*
|
||||||
* @constructor
|
* @constructor
|
||||||
* @extends {ol.Object}
|
* @extends {ol.Object}
|
||||||
|
* @implements {oli.interaction.Interaction}
|
||||||
* @api
|
* @api
|
||||||
*/
|
*/
|
||||||
ol.interaction.Interaction = function() {
|
ol.interaction.Interaction = function() {
|
||||||
@@ -80,6 +81,7 @@ ol.interaction.Interaction.prototype.getMap = function() {
|
|||||||
* @return {boolean} Whether the map browser event should continue
|
* @return {boolean} Whether the map browser event should continue
|
||||||
* through the chain of interactions. false means stop, true
|
* through the chain of interactions. false means stop, true
|
||||||
* means continue.
|
* means continue.
|
||||||
|
* @api
|
||||||
*/
|
*/
|
||||||
ol.interaction.Interaction.prototype.handleMapBrowserEvent =
|
ol.interaction.Interaction.prototype.handleMapBrowserEvent =
|
||||||
goog.abstractMethod;
|
goog.abstractMethod;
|
||||||
|
|||||||
Reference in New Issue
Block a user