Rename _ol_PluggableMap_ to PluggableMap

This commit is contained in:
Frederic Junod
2017-12-21 16:28:16 +01:00
parent 194394f7c5
commit 72fc1ad81a
4 changed files with 64 additions and 64 deletions

View File

@@ -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_;