You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,15 @@ Mapbox welcomes participation and contributions from everyone.
4
4
5
5
## 11.10.0-rc.1 - 31 January, 2025
6
6
7
+
* Expose experimental ColorTheme API to set style wide color theme. A color theme modifies the global colors of a style using a LUT (lookup table) for color grading.
8
+
Pass the image either as a base64-encoded string or as UIImage:
9
+
```swift
10
+
let mapView = MapView()
11
+
mapView.mapboxMap.setMapStyleContent {
12
+
ColorTheme(base64: "base64EncodedImage") // or use an uiimage shortcut ColorTheme(uiimage: lutImage)
13
+
}
14
+
```
15
+
Note: Each style can have only one `ColorTheme`. Setting a new theme overwrites the previous one. Further details can be fouund in documentation for `ColorTheme`
7
16
* Promote `ClipLayer.clipLayerTypes` and `ClipLayer.clipLayerScope` to stable.
* Add experimental `ViewAnnotationManager.viewAnnotationAvoidLayers` for specifying layers that view annotations should avoid. The API currently only supports line layers.
0 commit comments