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

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.14
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
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.14",
4
4
  "description": "Map tile server for JSON GL styles - serving vector tiles",
5
5
  "main": "src/main.js",
6
6
  "bin": {
@@ -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);