Rename _ol_MapBrowserEventHandler_ to MapBrowserEventHandler

This commit is contained in:
Marc Jansen
2017-12-15 09:51:06 +01:00
committed by Frederic Junod
parent 479c7a4668
commit 5199371b9f
3 changed files with 19 additions and 19 deletions

View File

@@ -5,7 +5,7 @@ import {getUid, inherits} from './index.js';
import _ol_Collection_ from './Collection.js';
import _ol_CollectionEventType_ from './CollectionEventType.js';
import MapBrowserEvent from './MapBrowserEvent.js';
import _ol_MapBrowserEventHandler_ from './MapBrowserEventHandler.js';
import MapBrowserEventHandler from './MapBrowserEventHandler.js';
import MapBrowserEventType from './MapBrowserEventType.js';
import MapEvent from './MapEvent.js';
import _ol_MapEventType_ from './MapEventType.js';
@@ -187,7 +187,7 @@ var _ol_PluggableMap_ = function(options) {
* @private
* @type {ol.MapBrowserEventHandler}
*/
this.mapBrowserEventHandler_ = new _ol_MapBrowserEventHandler_(this, options.moveTolerance);
this.mapBrowserEventHandler_ = new MapBrowserEventHandler(this, options.moveTolerance);
for (var key in MapBrowserEventType) {
_ol_events_.listen(this.mapBrowserEventHandler_, MapBrowserEventType[key],
this.handleMapBrowserEvent, this);