mapicgc-gl-js 0.0.79 → 0.0.80
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 +2 -2
- package/README.md +12 -9
- package/package.json +1 -1
|
@@ -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: 20
|
|
18
18
|
- run: npm ci
|
|
19
19
|
- run: npm test
|
|
20
20
|
|
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
- uses: actions/checkout@v3
|
|
26
26
|
- uses: actions/setup-node@v3
|
|
27
27
|
with:
|
|
28
|
-
node-version:
|
|
28
|
+
node-version: 20
|
|
29
29
|
registry-url: https://npm.pkg.github.com/
|
|
30
30
|
scope: '@unitatgeostart'
|
|
31
31
|
- run: npm ci
|
package/README.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
<
|
|
1
|
+
<div style="text-align:center">
|
|
2
|
+
<p>
|
|
2
3
|
<img src="https://tilemaps.icgc.cat/cdn/images/logo2.png" alt="MapICGC Logo" width="400px">
|
|
3
4
|
</p>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
</div>
|
|
6
|
+
|
|
7
|
+
<div style="text-align:center">
|
|
8
|
+
|
|
9
|
+
[](LICENSE.txt)
|
|
10
|
+
[](https://www.npmjs.com/package/mapicgc-gl-js)
|
|
11
|
+
[](https://twitter.com/icgcat)
|
|
12
|
+
<img src="https://tilemaps.icgc.cat/cdn/images/JS-logo.svg" width="20px"/>
|
|
13
|
+
</div>
|
|
11
14
|
|
|
12
|
-
<br>
|
|
13
15
|
|
|
14
16
|
# MapICGC GL JS
|
|
15
17
|
|
|
@@ -49,6 +51,7 @@ Check out the features through <a href="https://codepen.io/collection/mrvVZd" ta
|
|
|
49
51
|
<script>
|
|
50
52
|
import { Map, Config } from "mapicgc-gl-js";
|
|
51
53
|
//import * as mapicgcgl from "mapicgc-gl-js";
|
|
54
|
+
|
|
52
55
|
|
|
53
56
|
async function initMap() {
|
|
54
57
|
const data = await Config.getConfigICGC(); //load config
|
package/package.json
CHANGED