1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- import * as zrUtil from 'zrender/lib/core/util.js';
- var coordinateSystemCreators = {};
- var CoordinateSystemManager = function () {
- function CoordinateSystemManager() {
- this._coordinateSystems = [];
- }
- CoordinateSystemManager.prototype.create = function (ecModel, api) {
- var coordinateSystems = [];
- zrUtil.each(coordinateSystemCreators, function (creator, type) {
- var list = creator.create(ecModel, api);
- coordinateSystems = coordinateSystems.concat(list || []);
- });
- this._coordinateSystems = coordinateSystems;
- };
- CoordinateSystemManager.prototype.update = function (ecModel, api) {
- zrUtil.each(this._coordinateSystems, function (coordSys) {
- coordSys.update && coordSys.update(ecModel, api);
- });
- };
- CoordinateSystemManager.prototype.getCoordinateSystems = function () {
- return this._coordinateSystems.slice();
- };
- CoordinateSystemManager.register = function (type, creator) {
- coordinateSystemCreators[type] = creator;
- };
- CoordinateSystemManager.get = function (type) {
- return coordinateSystemCreators[type];
- };
- return CoordinateSystemManager;
- }();
- export default CoordinateSystemManager;
|