raintee-maputils 1.0.1 → 1.0.3
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.
- package/index.js +9 -9
- package/package.json +7 -3
package/index.js
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import CustomOptionsControl from './
|
|
2
|
-
import CustomToggleControl from './
|
|
3
|
-
import RainteeConstants from './
|
|
4
|
-
import RainteeGISUtil from './
|
|
5
|
-
import RainteeSourceMapTool from './
|
|
6
|
-
import RasterLayerController from './
|
|
7
|
-
import TerrainToggleControl from './
|
|
8
|
-
import useDrawCache from './
|
|
1
|
+
import CustomOptionsControl from './src/CustomOptionsControl';
|
|
2
|
+
import CustomToggleControl from './src/CustomToggleControl';
|
|
3
|
+
import RainteeConstants from './src/RainteeConstants';
|
|
4
|
+
import RainteeGISUtil from './src/RainteeGISUtil';
|
|
5
|
+
import RainteeSourceMapTool from './src/RainteeSourceMapTool';
|
|
6
|
+
import RasterLayerController from './src/RasterLayerController';
|
|
7
|
+
import TerrainToggleControl from './src/TerrainToggleControl';
|
|
8
|
+
import useDrawCache from './src/useDrawCache';
|
|
9
9
|
|
|
10
|
-
export {
|
|
10
|
+
export default {
|
|
11
11
|
RainteeConstants,
|
|
12
12
|
RainteeGISUtil,
|
|
13
13
|
RainteeSourceMapTool,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "raintee-maputils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Raintee的GIS开发工具包",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"raintee-maputils": "index.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
|
-
"index.js"
|
|
11
|
+
"index.js",
|
|
12
|
+
"lib"
|
|
12
13
|
],
|
|
13
14
|
"scripts": {
|
|
14
15
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -23,5 +24,8 @@
|
|
|
23
24
|
"mapbox"
|
|
24
25
|
],
|
|
25
26
|
"author": "raintee",
|
|
26
|
-
"license": "ISC"
|
|
27
|
+
"license": "ISC",
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"javascript-obfuscator": "^4.1.1"
|
|
30
|
+
}
|
|
27
31
|
}
|