Transformed

This commit is contained in:
Tim Schaub
2017-12-11 16:29:33 -07:00
parent 1cdb6a66f0
commit 7f47883c48
737 changed files with 22216 additions and 21609 deletions
+10 -8
View File
@@ -1,8 +1,8 @@
goog.provide('ol.MapEvent');
goog.require('ol');
goog.require('ol.events.Event');
/**
* @module ol/MapEvent
*/
import _ol_ from './index.js';
import _ol_events_Event_ from './events/Event.js';
/**
* @classdesc
@@ -16,9 +16,9 @@ goog.require('ol.events.Event');
* @param {ol.PluggableMap} map Map.
* @param {?olx.FrameState=} opt_frameState Frame state.
*/
ol.MapEvent = function(type, map, opt_frameState) {
var _ol_MapEvent_ = function(type, map, opt_frameState) {
ol.events.Event.call(this, type);
_ol_events_Event_.call(this, type);
/**
* The map where the event occurred.
@@ -35,4 +35,6 @@ ol.MapEvent = function(type, map, opt_frameState) {
this.frameState = opt_frameState !== undefined ? opt_frameState : null;
};
ol.inherits(ol.MapEvent, ol.events.Event);
_ol_.inherits(_ol_MapEvent_, _ol_events_Event_);
export default _ol_MapEvent_;