raintee-maputils 1.0.12 → 1.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +6 -6
  2. package/package.json +1 -3
package/index.js CHANGED
@@ -1,18 +1,18 @@
1
- import * as CustomOptionsControl from './src/CustomOptionsControl.js';
2
- import * as CustomToggleControl from './src/CustomToggleControl.js';
1
+ import { CustomOptionsControl } from './src/CustomOptionsControl.js';
2
+ import { ToggleControl } from './src/CustomToggleControl.js';
3
3
  import * as RainteeConstants from './src/RainteeConstants.js';
4
4
  import * as RainteeGISUtil from './src/RainteeGISUtil.js';
5
5
  import * as RainteeSourceMapTool from './src/RainteeSourceMapTool.js';
6
- import * as RasterLayerController from './src/RasterLayerController.js';
7
- import * as TerrainToggleControl from './src/TerrainToggleControl.js';
8
- import * as useDrawCache from './src/useDrawCache.js';
6
+ import { RasterLayerController } from './src/RasterLayerController.js';
7
+ import { TerrainToggleControl } from './src/TerrainToggleControl.js';
8
+ import { useDrawCache } from './src/useDrawCache.js';
9
9
 
10
10
  export {
11
11
  RainteeConstants,
12
12
  RainteeGISUtil,
13
13
  RainteeSourceMapTool,
14
14
  CustomOptionsControl,
15
- CustomToggleControl,
15
+ ToggleControl as CustomToggleControl,
16
16
  RasterLayerController,
17
17
  TerrainToggleControl,
18
18
  useDrawCache
package/package.json CHANGED
@@ -1,10 +1,8 @@
1
1
  {
2
2
  "name": "raintee-maputils",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "Raintee的GIS开发工具包",
5
- "source": "index.js",
6
5
  "main": "index.js",
7
- "module": "index.js",
8
6
  "type": "module",
9
7
  "bin": {
10
8
  "raintee-maputils": "index.js"