Rename _ol_PluggableMap_ to PluggableMap
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
* @module ol/Map
|
||||
*/
|
||||
import {inherits} from './index.js';
|
||||
import _ol_PluggableMap_ from './PluggableMap.js';
|
||||
import PluggableMap from './PluggableMap.js';
|
||||
import PluginType from './PluginType.js';
|
||||
import {defaults as defaultControls} from './control.js';
|
||||
import {defaults as defaultInteractions} from './interaction.js';
|
||||
@@ -93,9 +93,9 @@ var _ol_Map_ = function(options) {
|
||||
options.interactions = defaultInteractions();
|
||||
}
|
||||
|
||||
_ol_PluggableMap_.call(this, options);
|
||||
PluggableMap.call(this, options);
|
||||
};
|
||||
|
||||
inherits(_ol_Map_, _ol_PluggableMap_);
|
||||
inherits(_ol_Map_, PluggableMap);
|
||||
|
||||
export default _ol_Map_;
|
||||
|
||||
Reference in New Issue
Block a user