forked from MapGIS/WebClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
43 lines (38 loc) · 959 Bytes
/
index.js
File metadata and controls
43 lines (38 loc) · 959 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import {MapDocLayer} from './mapDocLayer';
import {MapTileLayer} from './mapTileLayer';
import {MapWMTSLayer} from './mapWmtsLayer';
import {GeneralWMTSLayer} from './generalWmtsLayer';
import {MapVectorLayer} from './mapVectorLayer';
import {
CRS,
crs
} from './Proj4Leaflet';
// import {TDTLayer,TDT_WGS84,TDT_Mercator} from './TDTLayer';
import {TDTLayer} from './TDTLayer';
import {BaiduTileLayer} from './BaiduTileLayer';
import {ArcGISLayer} from './ArcGISLayer';
import {
TiandituType,
GoogleLayerType,
ArcGISLayerType,
OpenStreetLayerType
} from './mapEnum';
export {MapDocLayer};
export {MapTileLayer};
export {MapWMTSLayer};
export {GeneralWMTSLayer};
export {MapVectorLayer};
export {
CRS,
crs
};
// export {TDTLayer,TDT_WGS84,TDT_Mercator};
export {TDTLayer};
export {BaiduTileLayer};
export {ArcGISLayer};
export {
TiandituType,
GoogleLayerType,
ArcGISLayerType,
OpenStreetLayerType
};