Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f889b77
add DEMData::pack() function and unit tests
NathanMOlson May 19, 2025
a2dbc6d
version of color relief that uses textures instead of uniforms for co…
NathanMOlson May 20, 2025
d9be1a8
get the right size limit for color ramp
NathanMOlson May 20, 2025
6840b70
update expectedBytes
NathanMOlson May 20, 2025
f59ead7
fix off-by-one error
NathanMOlson May 20, 2025
0f61df7
use texture lookup instead of shader interpolation
NathanMOlson May 20, 2025
8e05248
Merge branch 'hypsometric2' into hypsometric3
NathanMOlson May 20, 2025
ebd061d
Merge branch 'hypsometric2' into hypsometric3
NathanMOlson May 20, 2025
a583485
remove unneeded shader #define
NathanMOlson May 20, 2025
8a3513b
Merge branch 'hypsometric2' into hypsometric3
NathanMOlson May 20, 2025
b200ba1
use first available textures
NathanMOlson May 20, 2025
090c66a
global-state expression support in filter and paint properties (#5613)
zbigniewmatysek-tomtom May 20, 2025
64ae6af
Improved tile frustum culling for globe (#5865)
kubapelc May 20, 2025
df1cf4c
Merge branch 'main' into hypsometric3
NathanMOlson May 20, 2025
aa7b450
fix expectedBytes
NathanMOlson May 20, 2025
c412297
Bump @types/node from 22.15.19 to 22.15.21 (#5922)
dependabot[bot] May 21, 2025
36e8833
Bump sharp from 0.34.1 to 0.34.2 (#5923)
dependabot[bot] May 21, 2025
1677f63
enable color ramp to be dynamically changes using map.setPaintProperty()
NathanMOlson May 21, 2025
560163a
reduce indentation
NathanMOlson May 21, 2025
c562d13
remove unneeded member variable colorRamp and combine _createColorRam…
NathanMOlson May 21, 2025
d9d8738
fix build
NathanMOlson May 21, 2025
a71d5d4
add RGBAImage::setPixel()
NathanMOlson May 21, 2025
3c1cfaf
fix lint
NathanMOlson May 21, 2025
c78c931
Merge branch 'main' into hypsometric3
HarelM May 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## main

### ✨ Features and improvements
- Add `setGlobalStateProperty()` and `getGlobalState()` to the map public API ([#5613](https://github.com/maplibre/maplibre-gl-js/pull/5613))
- Improve tile frustum culling for globe, leading to better performance and faster loading times. ([#5865](https://github.com/maplibre/maplibre-gl-js/pull/5865))
- Add new `color-relief` layer type to render hypsometric tint from terrain-RGB tiles. ([#5742](https://github.com/maplibre/maplibre-gl-js/pull/5742))
- _...Add new stuff here..._

Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
103 changes: 103 additions & 0 deletions docs/assets/funicolares-and-funivias-como.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"name": "Funivia Pani d\"Erna",
"type": "lift"
},
"geometry": {
"coordinates": [
9.428832133068624,
45.86316915700536
],
"type": "Point"
}
},
{
"type": "Feature",
"properties": {
"name": "Funicolare Como-Brunate",
"type": "railway"
},
"geometry": {
"coordinates": [
9.082724408221196,
45.8175517969448
],
"type": "Point"
},
"id": 1
},
{
"type": "Feature",
"properties": {
"name": "Funivia Pigra Argegno",
"type": "lift"
},
"geometry": {
"coordinates": [
9.129994484478942,
45.94660892078414
],
"type": "Point"
}
},
{
"type": "Feature",
"properties": {
"name": "Funicolare Sacro Monte",
"type": "railway"
},
"geometry": {
"coordinates": [
8.787919643563527,
45.85848217923672
],
"type": "Point"
}
},
{
"type": "Feature",
"properties": {
"name": "Funicolare Cassarate Monte Brè",
"type": "railway"
},
"geometry": {
"coordinates": [
8.970232317680455,
46.00646782864027
],
"type": "Point"
}
},
{
"type": "Feature",
"properties": {
"name": "Funicolare Monte San Salvatore"
},
"geometry": {
"coordinates": [
8.945347867434748,
45.990386744943265
],
"type": "Point"
}
},
{
"type": "Feature",
"properties": {
"name": "Funivia Monte Lema",
"type": "lift"
},
"geometry": {
"coordinates": [
8.856229999561407,
46.0237566800011
],
"type": "Point"
}
}
]
}
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ Note too that if the CSS isn't available by the first render, as soon as the CSS
MapLibre GL JS is also distributed via UNPKG. Our latest version can installed by adding below tags this in the html `<head>`. Further instructions on how to select specific versions and semver ranges can be found on at [unpkg.com](https://unpkg.com).

```html
<script src="https://unpkg.com/maplibre-gl@^5.4.0/dist/maplibre-gl.js"></script>
<link href="https://unpkg.com/maplibre-gl@^5.4.0/dist/maplibre-gl.css" rel="stylesheet" />
<script src="https://unpkg.com/maplibre-gl@^5.5.0/dist/maplibre-gl.js"></script>
<link href="https://unpkg.com/maplibre-gl@^5.5.0/dist/maplibre-gl.css" rel="stylesheet" />
```
Loading