Skip to content

Commit bc9aaba

Browse files
committed
world30m maphorn,styles, layers24-25
1 parent d471687 commit bc9aaba

14 files changed

Lines changed: 2269 additions & 1993 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# MapICGC GL JS
1717

1818

19-
> 🌠 __Based on MapLibre GL JS version:__ 5.1.1
19+
> 🌠 __Based on MapLibre GL JS version:__ 5.23.0
2020
2121
The MapICGC GL JS library builds upon the open-source library [**MapLibre GL JS**](https://github.com/maplibre/maplibre-gl-js), exposing its existing capabilities while introducing new features specific to the MapICGC ecosystem. This library is tailored to seamlessly integrate with the MapICGC Cloud service, offering a comprehensive set of data to enhance web mapping experiences, including vector tiles, satellite raster tiles, DEM with Terrain RGB, and customizable styles with an editor.
2222

dist/mapicgc-gl.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mapicgc-gl.mjs

Lines changed: 27 additions & 40 deletions
Large diffs are not rendered by default.

nodeSetConfig.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -192,14 +192,14 @@ async function getVectorLimitsLayers() {
192192
try {
193193

194194
let test= [
195-
{ key: "TOPO", url: "https://geoserveis.icgc.cat/styles/icgc_mapa_base_topografic.json",image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_mapa_estandard.png" },
196-
{ key: "ORTO", url: "https://geoserveis.icgc.cat/styles/icgc_orto_estandard.json" , image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_orto_estandard.png"},
195+
{ key: "TOPO", url: "https://geoserveis.icgc.cat/styles/mapa-base-topografic.json",image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_mapa_estandard.png" },
196+
{ key: "ORTO", url: "https://geoserveis.icgc.cat/styles/mapa-base-orto.json" , image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_orto_estandard.png"},
197197
{ key: "ORTO3D", url: "https://eines.icgc.cat/recursos//styles/icgc_orto_3d.json" , image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_orto_estandard.png"},
198-
{ key: "ORTOHYBRID", url: "https://geoserveis.icgc.cat/styles/icgc_orto_hibrida.json" , image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_orto_hibrida.png"},
199-
{ key: "ADMIN", url: "https://geoserveis.icgc.cat/styles/icgc_limits_administratius_gris.json" , image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_delimitacio_limits_administratius.png"},
198+
{ key: "ORTOHYBRID", url: "https://geoserveis.icgc.cat/styles/mapa-base-orto-hibrida.json" , image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_orto_hibrida.png"},
199+
{ key: "ADMIN", url: "https://geoserveis.icgc.cat/styles/mapa-base-administratiu.json" , image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_delimitacio_limits_administratius.png"},
200200
{ key: "DARK", url: "https://geoserveis.icgc.cat/styles/icgc_mapa_base_fosc.json" , image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_mapa_base_fosc.png"},
201-
{ key: "LIGHT", url: "https://geoserveis.icgc.cat/styles/icgc_mapa_base_gris.json", image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_mapa_base_gris.png" },
202-
{ key: "GEOLOGY", url: "https://geoserveis.icgc.cat/styles/icgc_geologic_informacio.json", image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_geologic_informacio.png" },
201+
{ key: "LIGHT", url: "https://geoserveis.icgc.cat/styles/mapa-base-estandard-gris.json", image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_mapa_base_gris.png" },
202+
{ key: "GEOLOGY", url: "https://geoserveis.icgc.cat/styles/mapa-base-geologic.json", image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_geologic_informacio.png" },
203203
{
204204
key: "RASTER",
205205
substyles: {

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mapicgc-gl-js",
33
"homepage": "https://openicgc.github.io/mapicgc-doc/",
4-
"version": "1.0.6",
4+
"version": "1.0.7",
55
"description": "mapicgc-gl-js library",
66
"author": "Institut Cartogràfic i Geològic de Catalunya",
77
"license": "BSD-3-Clause",
@@ -12,6 +12,7 @@
1212
"webmap",
1313
"ICGC",
1414
"app",
15+
"mapicgc",
1516
"maplibre"
1617
],
1718
"repository": {

src/config-out.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mapOptions: {
1717
bearing: 0,
1818
pitch: 0,
1919
hash: false,
20-
style: "https://geoserveis.icgc.cat/styles/icgc_mapa_base_gris.json.json",
20+
style: "https://geoserveis.icgc.cat/styles/mapa-base-estandard-gris.json.json",
2121
maxZoom: 18,
2222
maxPitch: 85,
2323
},
@@ -55,12 +55,12 @@ map3dOptions: {
5555
baseStyles: {
5656
0: {
5757
key: "TOPO",
58-
url: "https://geoserveis.icgc.cat/styles/icgc_mapa_base_topografic.json",
58+
url: "https://geoserveis.icgc.cat/styles/mapa-base-topografic.json",
5959
image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_mapa_estandard.png",
6060
},
6161
1: {
6262
key: "ORTO",
63-
url: "https://geoserveis.icgc.cat/styles/icgc_orto_estandard.json",
63+
url: "https://geoserveis.icgc.cat/styles/mapa-base-orto.json",
6464
image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_orto_estandard.png",
6565
},
6666
2: {
@@ -70,12 +70,12 @@ baseStyles: {
7070
},
7171
3: {
7272
key: "ORTOHYBRID",
73-
url: "https://geoserveis.icgc.cat/styles/icgc_orto_hibrida.json",
73+
url: "https://geoserveis.icgc.cat/styles/mapa-base-orto-hibrida.json",
7474
image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_orto_hibrida.png",
7575
},
7676
4: {
7777
key: "ADMIN",
78-
url: "https://geoserveis.icgc.cat/styles/icgc_limits_administratius_gris.json",
78+
url: "https://geoserveis.icgc.cat/styles/mapa-base-administratiu.json",
7979
image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_delimitacio_limits_administratius.png",
8080
},
8181
5: {
@@ -85,12 +85,12 @@ baseStyles: {
8585
},
8686
6: {
8787
key: "LIGHT",
88-
url: "https://geoserveis.icgc.cat/styles/icgc_mapa_base_gris.json",
88+
url: "https://geoserveis.icgc.cat/styles/mapa-base-estandard-gris.json",
8989
image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_mapa_base_gris.png",
9090
},
9191
7: {
9292
key: "GEOLOGY",
93-
url: "https://geoserveis.icgc.cat/styles/icgc_geologic_informacio.json",
93+
url: "https://geoserveis.icgc.cat/styles/mapa-base-geologic.json",
9494
image: "https://visors.icgc.cat/contextmaps/imatges_estil/icgc_geologic_informacio.png",
9595
},
9696
},

0 commit comments

Comments
 (0)