First commit
This commit is contained in:
commit
87d22a4516
235 changed files with 51802 additions and 0 deletions
22
node_modules/proj4/lib/index.js
generated
vendored
Normal file
22
node_modules/proj4/lib/index.js
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
import proj4 from './core';
|
||||
import Proj from "./Proj";
|
||||
import Point from "./Point";
|
||||
import common from "./common/toPoint";
|
||||
import defs from "./defs";
|
||||
import nadgrid from "./nadgrid";
|
||||
import transform from "./transform";
|
||||
import mgrs from "mgrs";
|
||||
import includedProjections from "../projs";
|
||||
|
||||
proj4.defaultDatum = 'WGS84'; //default datum
|
||||
proj4.Proj = Proj;
|
||||
proj4.WGS84 = new proj4.Proj('WGS84');
|
||||
proj4.Point = Point;
|
||||
proj4.toPoint = common;
|
||||
proj4.defs = defs;
|
||||
proj4.nadgrid = nadgrid;
|
||||
proj4.transform = transform;
|
||||
proj4.mgrs = mgrs;
|
||||
proj4.version = '__VERSION__';
|
||||
includedProjections(proj4);
|
||||
export default proj4;
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue