summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLAnnotationView.mm
diff options
context:
space:
mode:
authorFredrik Karlsson <bjorn.fredrik.karlsson@gmail.com>2016-06-14 13:12:56 +0200
committerGitHub <noreply@github.com>2016-06-14 13:12:56 +0200
commitd564302c6d376da123f01028124b1702b13ad1ef (patch)
tree65931c0ceec1c9cd0a990c5b75963a08eaab4410 /platform/ios/src/MGLAnnotationView.mm
parenta557e1e2c9f76a9b01d2a973a9a162e14525a669 (diff)
downloadqtlocation-mapboxgl-d564302c6d376da123f01028124b1702b13ad1ef.tar.gz
[ios] fixes #5129 added annotation property to MGLAnnotationView (#5307)
Also added a test case for MGLAnnotationView
Diffstat (limited to 'platform/ios/src/MGLAnnotationView.mm')
-rw-r--r--platform/ios/src/MGLAnnotationView.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/src/MGLAnnotationView.mm b/platform/ios/src/MGLAnnotationView.mm
index 1a95beb23d..04a888f5e6 100644
--- a/platform/ios/src/MGLAnnotationView.mm
+++ b/platform/ios/src/MGLAnnotationView.mm
@@ -8,8 +8,8 @@
@interface MGLAnnotationView ()
-@property (nonatomic) id<MGLAnnotation> annotation;
@property (nonatomic, readwrite, nullable) NSString *reuseIdentifier;
+@property (nonatomic, readwrite, nullable) id <MGLAnnotation> annotation;
@end