tileserver-gl-light 5.5.0-pre.13 → 5.5.0-pre.15

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/CHANGELOG.md CHANGED
@@ -7,7 +7,7 @@
7
7
  ### 🐞 Bug fixes
8
8
  - _...Add new stuff here..._
9
9
 
10
- ## 5.5.0-pre.13
10
+ ## 5.5.0-pre.15
11
11
  - Add S3 support for PMTiles with multiple AWS credential profiles (https://github.com/maptiler/tileserver-gl/pull/1779) by @acalcutt
12
12
  - Create .aws directory passthrough folder in Dockerfile (https://github.com/maptiler/tileserver-gl/pull/1784) by @acalcutt
13
13
  - Update eslint to v9 (https://github.com/maptiler/tileserver-gl/pull/1473) by @acalcutt
@@ -18,6 +18,7 @@
18
18
  - Fix loading local data sources (PMTiles/MBTiles) specified in style (https://github.com/maptiler/tileserver-gl/pull/1855) by @acalcutt
19
19
  - Migrate NPM publishing to trusted publishing (OIDC) ([#1872](https://github.com/maptiler/tileserver-gl/pull/1872)) (by [app/copilot-swe-agent](https://github.com/app/copilot-swe-agent)
20
20
  - Fix get elevation may return data from wrong point (https://github.com/maptiler/tileserver-gl/pull/1860) by @russellporter @acalcutt
21
+ - Hide xkbcomp warnings ([#1920](https://github.com/maptiler/tileserver-gl/pull/1920)) (by [acalcutt](https://github.com/acalcutt))
21
22
  - **BREAKING**: Change 'sparse' option default based on tile format - vector tiles (pbf) default to false (204), raster tiles default to true (404 for overzoom) (https://github.com/maptiler/tileserver-gl/pull/1855) by @acalcutt
22
23
  - **BREAKING**: Update Maplibre-Native to v6.3.0. Note that the linux version now requires Ubuntu 24.04 to match the maplibre-native binary. (https://github.com/maptiler/tileserver-gl/pull/1907) by @acalcutt @dependabot
23
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tileserver-gl-light",
3
- "version": "5.5.0-pre.13",
3
+ "version": "5.5.0-pre.15",
4
4
  "description": "Map tile server for JSON GL styles - serving vector tiles",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -37,7 +37,7 @@
37
37
  "docker": "docker build . && docker run --rm -i -p 8080:8080 $(docker build -q .)"
38
38
  },
39
39
  "dependencies": {
40
- "@aws-sdk/client-s3": "^3.958.0",
40
+ "@aws-sdk/client-s3": "^3.962.0",
41
41
  "@jsse/pbfont": "^0.3.0",
42
42
  "@mapbox/mapbox-gl-rtl-text": "0.3.0",
43
43
  "@mapbox/mbtiles": "0.12.1",
@@ -72,14 +72,6 @@ class ElevationInfoControl {
72
72
  url = url.replace(new RegExp('{'+ key +'}','g'), coord[key]);
73
73
  }
74
74
 
75
- // Place marker at clicked location
76
- // Note: Terrain is disabled to prevent DEM errors with markers at out-of-bounds coordinates.
77
- // The marker conflicts with the terrain system in MapLibre, so we keep terrain disabled.
78
- const hadTerrain = this.map.getTerrain();
79
- if (hadTerrain) {
80
- this.map.setTerrain(null);
81
- }
82
-
83
75
  try {
84
76
  if (this.marker) {
85
77
  this.marker.remove();
@@ -92,7 +84,6 @@ class ElevationInfoControl {
92
84
  // If placement fails, continue without marker
93
85
  console.error("Marker placement error:", _err);
94
86
  }
95
- // Terrain remains disabled to avoid repeated DEM errors from marker updates
96
87
 
97
88
  let request = new XMLHttpRequest();
98
89
  request.open("GET", url, true);