UNPKG

highcharts

Version:
44 lines (43 loc) 783 B
/* * * * Projection registry * * (c) 2021-2026 Highsoft AS * * Integration of this software requires a license. * - For commercial use, see www.highcharts.com/license * - For non-commercial, see www.highcharts.com/license-eula * * Authors: * - Torstein Hønsi * * */ 'use strict'; /* * * * 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;