highcharts
Version:
JavaScript charting framework
43 lines (42 loc) • 704 B
JavaScript
/* *
*
* Projection registry
*
* (c) 2021-2026 Highsoft AS
*
* A commercial license may be required depending on use.
* See www.highcharts.com/license
*
* Authors:
* - Torstein Honsi
*
* */
;
/* *
*
* Imports
*
* */
import LambertConformalConic from './LambertConformalConic.js';
import EqualEarth from './EqualEarth.js';
import Miller from './Miller.js';
import Orthographic from './Orthographic.js';
import WebMercator from './WebMercator.js';
/* *
*
* Constants
*
* */
const projectionRegistry = {
EqualEarth,
LambertConformalConic,
Miller,
Orthographic,
WebMercator
};
/* *
*
* Default Export
*
* */
export default projectionRegistry;