summaryrefslogtreecommitdiff
path: root/platform/node/CHANGELOG.md
diff options
context:
space:
mode:
authorChris Loer <chris.loer@gmail.com>2018-08-14 11:35:39 -0700
committerChris Loer <chris.loer@mapbox.com>2018-08-14 12:35:50 -0700
commit20f880ebec82bbd7553fc382400227efc0105bce (patch)
tree91ee58f2b554bb1a884ced122abb848bf6e23636 /platform/node/CHANGELOG.md
parent9ecb0997effb006e88c25d6fbca2570c8ab51adc (diff)
downloadqtlocation-mapboxgl-20f880ebec82bbd7553fc382400227efc0105bce.tar.gz
[core] Fix querying for annotations near tile boundaries at high zoom.
Fixes issue #12472. This commit doesn't address the underlying issues that come from symbolAnnotationTree using a slightly lower precision coordinate system than the annotations themselves. Instead, it just puts a small padding around each tile when it queries for tile data, so that symbols right at the tile boundary will be included in both tiles. The rendering/querying code will take care of only displaying one instance. The padding is in global coordinates, so at higher zoom the padding will be larger in tile units -- this is consistent with precision loss also being greater at higher zoom.
Diffstat (limited to 'platform/node/CHANGELOG.md')
-rw-r--r--platform/node/CHANGELOG.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/node/CHANGELOG.md b/platform/node/CHANGELOG.md
index 81210ab153..cfb86f4dbf 100644
--- a/platform/node/CHANGELOG.md
+++ b/platform/node/CHANGELOG.md
@@ -1,5 +1,6 @@
# master
- Don't default-show text/icons that depend on the placement of a paired icon/text [#12483](https://github.com/mapbox/mapbox-gl-native/issues/12483)
+- Fix symbol querying for annotations near tile boundaries at high zoom. ([#12472](https://github.com/mapbox/mapbox-gl-native/issues/12472))
- The `Map` constructor now accepts a `mode` option which can be either `"static"` (default) or `"tile"`. It must be set to `"tile"` when rendering individual tiles in order for the symbols to match across tiles.
- Remove unnecessary memory use when collision debug mode is not enabled ([#12294](https://github.com/mapbox/mapbox-gl-native/issues/12294))
- Added support for rendering `symbol-placement: line-center` ([#12337](https://github.com/mapbox/mapbox-gl-native/pull/12337))