diff options
author | zmiao <miao.zhao@mapbox.com> | 2020-02-12 00:48:10 +0200 |
---|---|---|
committer | zmiao <miao.zhao@mapbox.com> | 2020-02-12 12:24:05 +0200 |
commit | c57af518426acc99fada188990e831cacc8170fe (patch) | |
tree | 67aba88e3d048d35b743a8b71998722c940055c0 | |
parent | 7fda6ecad3e1119995b1bb23257995f730ac2a23 (diff) | |
download | qtlocation-mapboxgl-c57af518426acc99fada188990e831cacc8170fe.tar.gz |
Add Changelog entry for within expression usage with paint property and filter expression
-rw-r--r-- | CHANGELOG.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 95bda43b5d..62b441e532 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,12 @@ The new `Source::setPrefetchZoomDelta(optional<uint8_t>)` method allows overriding default tile prefetch setting that is defined by the Map instance. +- [core] Add support for `within expression`. Implement the use of `within expression` with paint propery and filter expression. ([#16157](https://github.com/mapbox/mapbox-gl-native/pull/16157)) + + The `within expression` enables checking whether a feature is inside a pre-defined geometry set/boundary or not. This `within expression` returns a boolean value, `true` indicates that the feature being evaluated is inside the geometry set. The returned value can be then consumed as input by another expression or used directly by a paint/layer property. + + Support for using `within expression` with layout propery will be implemented separately. + ### 🏁 Performance improvements - [core] Loading images to style optimization ([#16187](https://github.com/mapbox/mapbox-gl-native/pull/16187)) |