From f88e5aec09e8f89405d2cd2f807a2e79b32901f5 Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Tue, 11 Jun 2024 15:33:09 +1200 Subject: [PATCH 01/13] Add aerial style config and allow swapable tileMatrix in the source url. --- config/style/aerial.json | 23 +++++++++++++++++++++++ config/style/aerialhybrid.json | 4 ++-- config/style/basic.json | 2 +- config/style/positron.json | 2 +- config/style/topographic.json | 4 ++-- config/style/topolite.json | 4 ++-- 6 files changed, 31 insertions(+), 8 deletions(-) create mode 100644 config/style/aerial.json diff --git a/config/style/aerial.json b/config/style/aerial.json new file mode 100644 index 000000000..19a89b3b4 --- /dev/null +++ b/config/style/aerial.json @@ -0,0 +1,23 @@ +{ + "id": "st_aerial", + "layers": [ + { + "id": "basemaps-aerial", + "source": "basemaps-aerial", + "type": "raster" + } + ], + "sources": { + "basemaps-aerial": { + "tileSize": 256, + "tiles": ["/v1/tiles/aerial/{tileMatrix}/{z}/{x}/{y}.webp"], + "type": "raster" + }, + "basemaps-terrian": { + "tileSize": 256, + "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png"], + "type": "raster-dem" + } + }, + "version": 8 +} diff --git a/config/style/aerialhybrid.json b/config/style/aerialhybrid.json index f0dfec62f..72eb148a3 100644 --- a/config/style/aerialhybrid.json +++ b/config/style/aerialhybrid.json @@ -1395,12 +1395,12 @@ }, "name": "aerialhybrid", "sources": { - "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/EPSG:3857/tile.json" }, + "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, "LINZ-Imagery": { "maxzoom": 28, "minzoom": 0, "tileSize": 256, - "tiles": ["/v1/tiles/aerial/EPSG:3857/{z}/{x}/{y}.webp"], + "tiles": ["/v1/tiles/aerial/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" } }, diff --git a/config/style/basic.json b/config/style/basic.json index 9d4c04ae8..55a40b772 100644 --- a/config/style/basic.json +++ b/config/style/basic.json @@ -1032,7 +1032,7 @@ "openmaptiles": { "attribution": "© 2022 Toitū Te Whenua © OpenMapTiles - CC BY 4.0", "type": "vector", - "url": "/v1/tiles/topographic/EPSG:3857/tile.json" + "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" } }, "sprite": "", diff --git a/config/style/positron.json b/config/style/positron.json index 9ee077c15..0610d7cc5 100644 --- a/config/style/positron.json +++ b/config/style/positron.json @@ -1277,7 +1277,7 @@ "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua © OpenMapTiles - CC BY 4.0", "type": "vector", - "url": "/v1/tiles/topographic/EPSG:3857/tile.json" + "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" } }, "sprite": "/v1/sprites/topographic", diff --git a/config/style/topographic.json b/config/style/topographic.json index 24c5a2c81..43e689ff8 100644 --- a/config/style/topographic.json +++ b/config/style/topographic.json @@ -5504,8 +5504,8 @@ "metadata": { "maputnik:renderer": "mbgljs" }, "name": "topographic", "sources": { - "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/EPSG:3857/tile.json" }, - "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/EPSG:3857/{z}/{x}/{y}.webp"], "type": "raster" } + "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, + "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" } }, "sprite": "/v1/sprites/topographic", "version": 8 diff --git a/config/style/topolite.json b/config/style/topolite.json index b9009fccc..4da9e92ab 100644 --- a/config/style/topolite.json +++ b/config/style/topolite.json @@ -2420,8 +2420,8 @@ "metadata": { "maputnik:renderer": "mbgljs" }, "name": "topolite", "sources": { - "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/EPSG:3857/tile.json" }, - "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/EPSG:3857/{z}/{x}/{y}.webp"], "type": "raster" } + "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, + "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" } }, "sprite": "/v1/sprites/topographic", "version": 8 From b1f444492bb62e2575b9dd52986506ec8478089a Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Tue, 11 Jun 2024 15:44:39 +1200 Subject: [PATCH 02/13] Add missing name in style --- config/style/aerial.json | 1 + config/style/aerialhybrid.json | 2 +- config/style/topographic.json | 2 +- config/style/topolite.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/style/aerial.json b/config/style/aerial.json index 19a89b3b4..fc1d76513 100644 --- a/config/style/aerial.json +++ b/config/style/aerial.json @@ -1,5 +1,6 @@ { "id": "st_aerial", + "name": "aerial", "layers": [ { "id": "basemaps-aerial", diff --git a/config/style/aerialhybrid.json b/config/style/aerialhybrid.json index 72eb148a3..42752eceb 100644 --- a/config/style/aerialhybrid.json +++ b/config/style/aerialhybrid.json @@ -1395,7 +1395,7 @@ }, "name": "aerialhybrid", "sources": { - "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, + "LINZ Basemaps": { "attribution": "© 2024 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, "LINZ-Imagery": { "maxzoom": 28, "minzoom": 0, diff --git a/config/style/topographic.json b/config/style/topographic.json index 43e689ff8..92b182bdf 100644 --- a/config/style/topographic.json +++ b/config/style/topographic.json @@ -5504,7 +5504,7 @@ "metadata": { "maputnik:renderer": "mbgljs" }, "name": "topographic", "sources": { - "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, + "LINZ Basemaps": { "attribution": "© 2024 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" } }, "sprite": "/v1/sprites/topographic", diff --git a/config/style/topolite.json b/config/style/topolite.json index 4da9e92ab..47e54bbcc 100644 --- a/config/style/topolite.json +++ b/config/style/topolite.json @@ -2420,7 +2420,7 @@ "metadata": { "maputnik:renderer": "mbgljs" }, "name": "topolite", "sources": { - "LINZ Basemaps": { "attribution": "© 2022 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, + "LINZ Basemaps": { "attribution": "© 2024 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" } }, "sprite": "/v1/sprites/topographic", From 28eb90d1f0d14628ab6b6996e82d316074e1af1f Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Tue, 11 Jun 2024 15:58:21 +1200 Subject: [PATCH 03/13] Fix format --- config/style/aerial.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/style/aerial.json b/config/style/aerial.json index fc1d76513..983292502 100644 --- a/config/style/aerial.json +++ b/config/style/aerial.json @@ -1,6 +1,5 @@ { "id": "st_aerial", - "name": "aerial", "layers": [ { "id": "basemaps-aerial", @@ -8,6 +7,7 @@ "type": "raster" } ], + "name": "aerial", "sources": { "basemaps-aerial": { "tileSize": 256, From f5c2fcf743330599337262a5030c0cac0a94bd8b Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Thu, 13 Jun 2024 11:01:25 +1200 Subject: [PATCH 04/13] Update config/style/aerial.json --- config/style/aerial.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/style/aerial.json b/config/style/aerial.json index 983292502..2bfc5edf5 100644 --- a/config/style/aerial.json +++ b/config/style/aerial.json @@ -16,7 +16,7 @@ }, "basemaps-terrian": { "tileSize": 256, - "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png"], + "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], "type": "raster-dem" } }, From c8ce0ca347348dd1ba9357bdb71196d8f13b19d4 Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Thu, 13 Jun 2024 11:44:09 +1200 Subject: [PATCH 05/13] Update source name --- config/style/aerial.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/style/aerial.json b/config/style/aerial.json index 2bfc5edf5..812677377 100644 --- a/config/style/aerial.json +++ b/config/style/aerial.json @@ -2,19 +2,19 @@ "id": "st_aerial", "layers": [ { - "id": "basemaps-aerial", - "source": "basemaps-aerial", + "id": "Aerial-Imagery", + "source": "LINZ Basemaps", "type": "raster" } ], "name": "aerial", "sources": { - "basemaps-aerial": { + "LINZ Basemaps": { "tileSize": 256, "tiles": ["/v1/tiles/aerial/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" }, - "basemaps-terrian": { + "LINZ-Terrain": { "tileSize": 256, "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], "type": "raster-dem" From 212256239a5f65844c1c01c8fb3c93e03b7bb793 Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Thu, 13 Jun 2024 14:55:40 +1200 Subject: [PATCH 06/13] Add a max zoom --- config/style/aerial.json | 1 + 1 file changed, 1 insertion(+) diff --git a/config/style/aerial.json b/config/style/aerial.json index 812677377..6ad0d395c 100644 --- a/config/style/aerial.json +++ b/config/style/aerial.json @@ -15,6 +15,7 @@ "type": "raster" }, "LINZ-Terrain": { + "maxZoom": 18, "tileSize": 256, "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], "type": "raster-dem" From b74c9e45cfd30a839e43f5701dde04da83ac0534 Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Mon, 24 Jun 2024 09:00:09 +1200 Subject: [PATCH 07/13] Update config/style/aerial.json --- config/style/aerial.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/style/aerial.json b/config/style/aerial.json index 6ad0d395c..6ba20a88b 100644 --- a/config/style/aerial.json +++ b/config/style/aerial.json @@ -9,13 +9,13 @@ ], "name": "aerial", "sources": { - "LINZ Basemaps": { + "LINZ-Basemaps": { "tileSize": 256, "tiles": ["/v1/tiles/aerial/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" }, "LINZ-Terrain": { - "maxZoom": 18, + "maxzoom": 18, "tileSize": 256, "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], "type": "raster-dem" From e06d9431081abc650e0331e01b170d11cc45113f Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Mon, 24 Jun 2024 09:04:19 +1200 Subject: [PATCH 08/13] Update config/style/aerial.json --- config/style/aerial.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/style/aerial.json b/config/style/aerial.json index 6ba20a88b..9e5400938 100644 --- a/config/style/aerial.json +++ b/config/style/aerial.json @@ -3,7 +3,7 @@ "layers": [ { "id": "Aerial-Imagery", - "source": "LINZ Basemaps", + "source": "LINZ-Basemaps", "type": "raster" } ], From 0bccba9987446f3997e3fbdab408a34470238157 Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Wed, 26 Jun 2024 11:12:01 +1200 Subject: [PATCH 09/13] Add terrain into styles --- config/style/aerialhybrid.json | 6 ++++++ config/style/topographic.json | 8 +++++++- config/style/topolite.json | 8 +++++++- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/config/style/aerialhybrid.json b/config/style/aerialhybrid.json index 42752eceb..4d8b5d94e 100644 --- a/config/style/aerialhybrid.json +++ b/config/style/aerialhybrid.json @@ -1402,6 +1402,12 @@ "tileSize": 256, "tiles": ["/v1/tiles/aerial/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" + }, + "LINZ-Terrain": { + "maxZoom": 18, + "tileSize": 256, + "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], + "type": "raster-dem" } }, "sprite": "/v1/sprites/topographic", diff --git a/config/style/topographic.json b/config/style/topographic.json index 92b182bdf..0b62ba06d 100644 --- a/config/style/topographic.json +++ b/config/style/topographic.json @@ -5505,7 +5505,13 @@ "name": "topographic", "sources": { "LINZ Basemaps": { "attribution": "© 2024 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, - "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" } + "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" }, + "LINZ-Terrain": { + "maxZoom": 18, + "tileSize": 256, + "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], + "type": "raster-dem" + } }, "sprite": "/v1/sprites/topographic", "version": 8 diff --git a/config/style/topolite.json b/config/style/topolite.json index 47e54bbcc..ddcd3fec5 100644 --- a/config/style/topolite.json +++ b/config/style/topolite.json @@ -2421,7 +2421,13 @@ "name": "topolite", "sources": { "LINZ Basemaps": { "attribution": "© 2024 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, - "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" } + "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" }, + "LINZ-Terrain": { + "maxZoom": 18, + "tileSize": 256, + "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], + "type": "raster-dem" + } }, "sprite": "/v1/sprites/topographic", "version": 8 From a530be506198b158ac85445a08d20f3cf0302f8e Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Wed, 26 Jun 2024 11:15:02 +1200 Subject: [PATCH 10/13] Fix lint --- config/style/topographic.json | 4 ++-- config/style/topolite.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/style/topographic.json b/config/style/topographic.json index 0b62ba06d..5b57e9ce6 100644 --- a/config/style/topographic.json +++ b/config/style/topographic.json @@ -5505,13 +5505,13 @@ "name": "topographic", "sources": { "LINZ Basemaps": { "attribution": "© 2024 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, - "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" }, "LINZ-Terrain": { "maxZoom": 18, "tileSize": 256, "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], "type": "raster-dem" - } + }, + "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" } }, "sprite": "/v1/sprites/topographic", "version": 8 diff --git a/config/style/topolite.json b/config/style/topolite.json index ddcd3fec5..81a657eef 100644 --- a/config/style/topolite.json +++ b/config/style/topolite.json @@ -2421,13 +2421,13 @@ "name": "topolite", "sources": { "LINZ Basemaps": { "attribution": "© 2024 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, - "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" }, "LINZ-Terrain": { "maxZoom": 18, "tileSize": 256, "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], "type": "raster-dem" - } + }, + "LINZ-Texture-Relief": { "maxzoom": 20, "minzoom": 0, "tileSize": 256, "tiles": ["/v1/tiles/texturereliefshade/{tileMatrix}/{z}/{x}/{y}.webp"], "type": "raster" } }, "sprite": "/v1/sprites/topographic", "version": 8 From 2dacd2d9d8eaad7b204ecfbd48dd6e0050a0dc0d Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Wed, 26 Jun 2024 11:18:14 +1200 Subject: [PATCH 11/13] Fix the maxzoom --- config/style/aerialhybrid.json | 2 +- config/style/topographic.json | 2 +- config/style/topolite.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/style/aerialhybrid.json b/config/style/aerialhybrid.json index 4d8b5d94e..f4d60de3d 100644 --- a/config/style/aerialhybrid.json +++ b/config/style/aerialhybrid.json @@ -1404,7 +1404,7 @@ "type": "raster" }, "LINZ-Terrain": { - "maxZoom": 18, + "maxzoom": 18, "tileSize": 256, "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], "type": "raster-dem" diff --git a/config/style/topographic.json b/config/style/topographic.json index 5b57e9ce6..374776529 100644 --- a/config/style/topographic.json +++ b/config/style/topographic.json @@ -5506,7 +5506,7 @@ "sources": { "LINZ Basemaps": { "attribution": "© 2024 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, "LINZ-Terrain": { - "maxZoom": 18, + "maxzoom": 18, "tileSize": 256, "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], "type": "raster-dem" diff --git a/config/style/topolite.json b/config/style/topolite.json index 81a657eef..baae5fdc5 100644 --- a/config/style/topolite.json +++ b/config/style/topolite.json @@ -2422,7 +2422,7 @@ "sources": { "LINZ Basemaps": { "attribution": "© 2024 Toitū Te Whenua - CC BY 4.0", "type": "vector", "url": "/v1/tiles/topographic/{tileMatrix}/tile.json" }, "LINZ-Terrain": { - "maxZoom": 18, + "maxzoom": 18, "tileSize": 256, "tiles": ["/v1/tiles/elevation/{tileMatrix}/{z}/{x}/{y}.png?pipeline=terrain-rgb"], "type": "raster-dem" From 94507154baa7a7bc08d1be94c9b3d03995879972 Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Mon, 1 Jul 2024 10:24:01 +1200 Subject: [PATCH 12/13] Update cli version to test screenshot --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e91cc2fc2..d7be4695d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ on: - master env: - BASEMAPS_CONTAINER_VERSION: v7.3.0-2-g9396f606 + BASEMAPS_CONTAINER_VERSION: v7.4.0-18-gc35e14e5 jobs: build: From 852dc382e473c023dbdf935d2d435809812d3fda Mon Sep 17 00:00:00 2001 From: Wentao Kuang Date: Thu, 11 Jul 2024 09:59:50 +1200 Subject: [PATCH 13/13] Update .github/workflows/build.yml --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d7be4695d..8c786e57d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ on: - master env: - BASEMAPS_CONTAINER_VERSION: v7.4.0-18-gc35e14e5 + BASEMAPS_CONTAINER_VERSION: v7.5 jobs: build: