summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2018-09-25 22:21:23 -0400
committerJulian Rex <julian.rex@mapbox.com>2018-09-25 22:21:23 -0400
commit677b1e2409c962e0bd5d9e00e0c815e9dba1bfdd (patch)
tree131a43ba369c78b67e89e8e5e0239d33a8cb9263
parentddbef6e6637d9c4f56c992db3a93575c7ea48718 (diff)
downloadqtlocation-mapboxgl-677b1e2409c962e0bd5d9e00e0c815e9dba1bfdd.tar.gz
Updated comments/changelog
-rw-r--r--platform/ios/CHANGELOG.md1
-rw-r--r--platform/ios/src/MGLMapView.mm1
2 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/CHANGELOG.md b/platform/ios/CHANGELOG.md
index 194d17fda0..71caf4a9dd 100644
--- a/platform/ios/CHANGELOG.md
+++ b/platform/ios/CHANGELOG.md
@@ -8,6 +8,7 @@ Mapbox welcomes participation and contributions from everyone. Please read [CONT
* Added an `MGLSymbolStyleLayer.symbolZOrder` property for forcing point features in a symbol layer to be layered in the same order that they are specified in the layer’s associated source. ([#12783](https://github.com/mapbox/mapbox-gl-native/pull/12783))
* Fixed a crash when a style layer `*-pattern` property evaluates to nil for a particular feature. ([#12896](https://github.com/mapbox/mapbox-gl-native/pull/12896))
+* Fixed an issue with annotations (including the user's location puck) and the GL map lagging relative to each other. ([#12895](https://github.com/mapbox/mapbox-gl-native/pull/12895))
### Offline maps
diff --git a/platform/ios/src/MGLMapView.mm b/platform/ios/src/MGLMapView.mm
index 807db1be6e..d550a086cb 100644
--- a/platform/ios/src/MGLMapView.mm
+++ b/platform/ios/src/MGLMapView.mm
@@ -636,7 +636,6 @@ public:
_glView.layer.opaque = _opaque;
_glView.delegate = self;
- // `CAEAGLLayer.presentsWithTransaction` was introduced in iOS 9.
CAEAGLLayer *eaglLayer = MGL_OBJC_DYNAMIC_CAST(_glView.layer, CAEAGLLayer);
eaglLayer.presentsWithTransaction = YES;