Merge pull request #3757 from bjornharrtell/selectevent-browser

Add mapBrowserEvent as a member of ol.SelectEvent
This commit is contained in:
Andreas Hocevar
2015-06-04 18:56:55 +02:00
2 changed files with 25 additions and 9 deletions
+13 -7
View File
@@ -120,21 +120,27 @@ oli.MapEvent.prototype.frameState;
/**
* @interface
*/
oli.SelectEvent = function() {};
oli.SelectEvent = function() {};
/**
* @type {Array.<ol.Feature>}
*/
/**
* @type {Array.<ol.Feature>}
*/
oli.SelectEvent.prototype.deselected;
/**
* @type {Array.<ol.Feature>}
*/
/**
* @type {Array.<ol.Feature>}
*/
oli.SelectEvent.prototype.selected;
/**
* @type {ol.MapBrowserEvent}
*/
oli.SelectEvent.prototype.mapBrowserEvent;
/**
* @type {Object}