diff options
author | Jason Wray <jason@mapbox.com> | 2018-02-27 15:46:28 -0500 |
---|---|---|
committer | Jason Wray <jason@mapbox.com> | 2018-03-14 15:46:00 -0400 |
commit | 2230af142540a041e0583e81cda49a0064be4044 (patch) | |
tree | 5bf382cd9277ce24d1ecb579e75a9980c67fd213 | |
parent | 3294f279e32315fc904e84317076c0a634091f14 (diff) | |
download | qtlocation-mapboxgl-2230af142540a041e0583e81cda49a0064be4044.tar.gz |
[ios] Improved heading indicator arrow visibility
-rw-r--r-- | platform/ios/CHANGELOG.md | 4 | ||||
-rw-r--r-- | platform/ios/src/MGLUserLocationHeadingArrowLayer.m | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/platform/ios/CHANGELOG.md b/platform/ios/CHANGELOG.md index e44e04d74c..c50aac7b2e 100644 --- a/platform/ios/CHANGELOG.md +++ b/platform/ios/CHANGELOG.md @@ -53,6 +53,10 @@ Mapbox welcomes participation and contributions from everyone. Please read [CONT * Added `MGLMapView.showsScale` as the recommended way to show the scale bar. This property can be set directly in Interface Builder. ([#11335](https://github.com/mapbox/mapbox-gl-native/pull/11335)) * Fixed an issue where the scale bar would not appear until the map had moved. ([#11335](https://github.com/mapbox/mapbox-gl-native/pull/11335)) +## 3.7.6 + +* Improved the visibility of the heading indicator arrow. ([#11337](https://github.com/mapbox/mapbox-gl-native/pull/11337)) + ## 3.7.5 - February 16, 2018 * Fixed an issue where requesting location services permission would trigger an unrecoverable loop. ([#11229](https://github.com/mapbox/mapbox-gl-native/pull/11229)) diff --git a/platform/ios/src/MGLUserLocationHeadingArrowLayer.m b/platform/ios/src/MGLUserLocationHeadingArrowLayer.m index 912ce30c35..d81cb5a09a 100644 --- a/platform/ios/src/MGLUserLocationHeadingArrowLayer.m +++ b/platform/ios/src/MGLUserLocationHeadingArrowLayer.m @@ -3,7 +3,7 @@ #import "MGLFaux3DUserLocationAnnotationView.h" #import "MGLGeometry.h" -const CGFloat MGLUserLocationHeadingArrowSize = 6; +const CGFloat MGLUserLocationHeadingArrowSize = 8; @implementation MGLUserLocationHeadingArrowLayer |