mapicgc-gl-js 0.0.57 → 0.0.59
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/.github/workflows/npm-publish.yml +4 -3
- package/README.md +10 -8
- package/dist/mapicgc-gl.js +187 -187
- package/dist/mapicgc-gl.umd.js +187 -187
- package/nodePush2Master.js +90 -14
- package/package.json +1 -1
- package/src/config.js +809 -809
- package/src/configNode.js +809 -809
- package/src/constants/Layers.js +165 -165
- package/src/constants/Styles.js +12 -12
- package/src/constants/Terrains.js +7 -7
- package/src/map/Map.js +9 -107
- package/test/exemples/addBasemap.html +1 -0
|
@@ -14,7 +14,7 @@ jobs:
|
|
|
14
14
|
- uses: actions/checkout@v3
|
|
15
15
|
- uses: actions/setup-node@v3
|
|
16
16
|
with:
|
|
17
|
-
node-version:
|
|
17
|
+
node-version: 18
|
|
18
18
|
- run: npm ci
|
|
19
19
|
- run: npm test
|
|
20
20
|
|
|
@@ -25,8 +25,9 @@ jobs:
|
|
|
25
25
|
- uses: actions/checkout@v3
|
|
26
26
|
- uses: actions/setup-node@v3
|
|
27
27
|
with:
|
|
28
|
-
node-version:
|
|
29
|
-
registry-url: https://
|
|
28
|
+
node-version: 18
|
|
29
|
+
registry-url: https://npm.pkg.github.com/
|
|
30
|
+
scope: '@unitatgeostart'
|
|
30
31
|
- run: npm ci
|
|
31
32
|
- run: npm publish
|
|
32
33
|
env:
|
package/README.md
CHANGED
|
@@ -25,6 +25,15 @@ Moreover, MapICGC GL JS provides well-documented and user-friendly wrapper funct
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
+
<br>
|
|
29
|
+
|
|
30
|
+
## Documentation
|
|
31
|
+
|
|
32
|
+
Full documentation for this library is <a href="https://openicgc.github.io/mapicgc-doc/" target="_blank">available here</a>.
|
|
33
|
+
|
|
34
|
+
Check out the features through <a href="https://codepen.io/collection/mrvVZd" target="_blank">examples</a>.
|
|
35
|
+
|
|
36
|
+
|
|
28
37
|
<br>
|
|
29
38
|
|
|
30
39
|
## Getting Started
|
|
@@ -76,14 +85,7 @@ Result:
|
|
|
76
85
|
<a title="Link to CodePen" href="https://codepen.io/unitatgeostart/pen/eYXWyqd" target="_blank"><img src="https://tilemaps.icgc.cat/cdn//images/map1.png"></img></a></div>
|
|
77
86
|
<br>
|
|
78
87
|
|
|
79
|
-
## Documentation
|
|
80
|
-
|
|
81
|
-
Full documentation for this library is <a href="https://autogitlab.icgc.local/geostarters/icgc/mapicgc/mapicgc-doc" target="_blank">available here</a>.
|
|
82
88
|
|
|
83
|
-
Check out the features through <a href="https://codepen.io/collection/mrvVZd" target="_blank">examples</a>.
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
<br>
|
|
87
89
|
|
|
88
90
|
## Dependencies
|
|
89
91
|
|
|
@@ -102,4 +104,4 @@ MapICGC GL JS integrates the following libraries:
|
|
|
102
104
|
|
|
103
105
|
|
|
104
106
|
## License
|
|
105
|
-
**MAPICGC GL JS** is licensed under the [3-Clause BSD license](./LICENSE.txt).
|
|
107
|
+
**MAPICGC GL JS** is licensed under the [3-Clause BSD license](./LICENSE.txt).
|