diff options
Diffstat (limited to 'debian/missing-sources/leaflet.js/geo/crs/index.js')
-rw-r--r-- | debian/missing-sources/leaflet.js/geo/crs/index.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/missing-sources/leaflet.js/geo/crs/index.js b/debian/missing-sources/leaflet.js/geo/crs/index.js new file mode 100644 index 0000000..c0370ba --- /dev/null +++ b/debian/missing-sources/leaflet.js/geo/crs/index.js @@ -0,0 +1,15 @@ +import {CRS} from './CRS'; +import {Earth} from './CRS.Earth'; +import {EPSG3395} from './CRS.EPSG3395'; +import {EPSG3857, EPSG900913} from './CRS.EPSG3857'; +import {EPSG4326} from './CRS.EPSG4326'; +import {Simple} from './CRS.Simple'; + +CRS.Earth = Earth; +CRS.EPSG3395 = EPSG3395; +CRS.EPSG3857 = EPSG3857; +CRS.EPSG900913 = EPSG900913; +CRS.EPSG4326 = EPSG4326; +CRS.Simple = Simple; + +export {CRS}; |