20 lines
542 B
JavaScript
20 lines
542 B
JavaScript
/* *
|
|
*
|
|
* !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
|
|
*
|
|
* */
|
|
'use strict';
|
|
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';
|
|
var registry = {
|
|
EqualEarth: EqualEarth,
|
|
LambertConformalConic: LambertConformalConic,
|
|
Miller: Miller,
|
|
Orthographic: Orthographic,
|
|
WebMercator: WebMercator
|
|
};
|
|
export default registry;
|