mapbox-gl 2.13.0-dev → 2.13.0
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 +25 -0
- package/dist/mapbox-gl-csp-worker.js +1 -1
- package/dist/mapbox-gl-csp-worker.js.map +1 -1
- package/dist/mapbox-gl-csp.js +1 -1
- package/dist/mapbox-gl-csp.js.map +1 -1
- package/dist/mapbox-gl-dev.js +2 -2
- package/dist/mapbox-gl-unminified.js +1 -1
- package/dist/mapbox-gl.js +1 -1
- package/dist/mapbox-gl.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## 2.13.0
|
|
2
|
+
|
|
3
|
+
### Features ✨ and improvements 🏁
|
|
4
|
+
|
|
5
|
+
* Support draping over terrain and globe in CustomLayer API ([#12182](https://github.com/mapbox/mapbox-gl-js/pull/12182))
|
|
6
|
+
* Improve rendering performance of terrain slightly by reducing its GPU memory footprint. ([#12472](https://github.com/mapbox/mapbox-gl-js/pull/12472))
|
|
7
|
+
* Add methods for changing a raster tile source dynamically (e.g. `setTiles`, `setUrl`). ([#12352](https://github.com/mapbox/mapbox-gl-js/pull/12352))
|
|
8
|
+
|
|
9
|
+
### Bug fixes 🐞
|
|
10
|
+
|
|
11
|
+
* Fix `line-border-color` when used with `line-trim-offset` ([#12461](https://github.com/mapbox/mapbox-gl-js/pull/12461))
|
|
12
|
+
* Fix potential infinite loop when calling `fitBounds` with globe projection ([#12488](https://github.com/mapbox/mapbox-gl-js/pull/12488))
|
|
13
|
+
* Fix `map.getBounds()` returning incorrect bounds with adaptive projections. ([#12503](https://github.com/mapbox/mapbox-gl-js/pull/12503))
|
|
14
|
+
* Introduce skirts for terrain globe mode ([#12523](https://github.com/mapbox/mapbox-gl-js/pull/12523))
|
|
15
|
+
* Fix blur on draped lines while zoom-in ([#12510](https://github.com/mapbox/mapbox-gl-js/pull/12510))
|
|
16
|
+
* Fix map pan speed while pinching in ([#12543](https://github.com/mapbox/mapbox-gl-js/pull/12543))
|
|
17
|
+
* Fix negative-width diacritics handling ([#12554](https://github.com/mapbox/mapbox-gl-js/pull/12554))
|
|
18
|
+
* Fixes `undefined is not an object` in `coalesceChanges` ([#12497](https://github.com/mapbox/mapbox-gl-js/pull/12497)) (h/t [nick-romano](https://github.com/nick-romano))
|
|
19
|
+
|
|
20
|
+
## 2.12.1
|
|
21
|
+
|
|
22
|
+
### Bug fixes 🐞
|
|
23
|
+
|
|
24
|
+
* Fix a rare bug where certain diacritical characters could break the rendering of a symbol layer. ([#12554](https://github.com/mapbox/mapbox-gl-js/pull/12554))
|
|
25
|
+
|
|
1
26
|
## 2.12.0
|
|
2
27
|
|
|
3
28
|
### Features ✨ and improvements 🏁
|