Transformed
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
goog.provide('ol.MapBrowserPointerEvent');
|
||||
|
||||
goog.require('ol');
|
||||
goog.require('ol.MapBrowserEvent');
|
||||
|
||||
/**
|
||||
* @module ol/MapBrowserPointerEvent
|
||||
*/
|
||||
import _ol_ from './index.js';
|
||||
import _ol_MapBrowserEvent_ from './MapBrowserEvent.js';
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
@@ -13,10 +13,10 @@ goog.require('ol.MapBrowserEvent');
|
||||
* @param {boolean=} opt_dragging Is the map currently being dragged?
|
||||
* @param {?olx.FrameState=} opt_frameState Frame state.
|
||||
*/
|
||||
ol.MapBrowserPointerEvent = function(type, map, pointerEvent, opt_dragging,
|
||||
var _ol_MapBrowserPointerEvent_ = function(type, map, pointerEvent, opt_dragging,
|
||||
opt_frameState) {
|
||||
|
||||
ol.MapBrowserEvent.call(this, type, map, pointerEvent.originalEvent, opt_dragging,
|
||||
_ol_MapBrowserEvent_.call(this, type, map, pointerEvent.originalEvent, opt_dragging,
|
||||
opt_frameState);
|
||||
|
||||
/**
|
||||
@@ -26,4 +26,6 @@ ol.MapBrowserPointerEvent = function(type, map, pointerEvent, opt_dragging,
|
||||
this.pointerEvent = pointerEvent;
|
||||
|
||||
};
|
||||
ol.inherits(ol.MapBrowserPointerEvent, ol.MapBrowserEvent);
|
||||
|
||||
_ol_.inherits(_ol_MapBrowserPointerEvent_, _ol_MapBrowserEvent_);
|
||||
export default _ol_MapBrowserPointerEvent_;
|
||||
|
||||
Reference in New Issue
Block a user