summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEimantas Vaiciunas <eimantas@walkingsmarts.com>2017-04-02 15:09:57 +0300
committerMinh Nguyễn <mxn@1ec5.org>2017-05-20 19:55:03 -0700
commite1c7ab618e8125f9cf63fb5a1fa95c1e188ccee0 (patch)
treedccc2ab4a7f0024f83ec284fd5332e8feba42792
parentbdb09c133555a47e6f7726944e10823aa3ec52f1 (diff)
downloadqtlocation-mapboxgl-e1c7ab618e8125f9cf63fb5a1fa95c1e188ccee0.tar.gz
Add basic documentation for `overlays` property
Copied verbatim from `annotations` property. Changed types.
-rw-r--r--platform/macos/src/MGLMapView.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/platform/macos/src/MGLMapView.h b/platform/macos/src/MGLMapView.h
index eb37f0540d..2652e0b97d 100644
--- a/platform/macos/src/MGLMapView.h
+++ b/platform/macos/src/MGLMapView.h
@@ -729,6 +729,13 @@ MGL_EXPORT IB_DESIGNABLE
#pragma mark Overlaying the Map
+/**
+ The complete list of overlays associated with the receiver. (read-only)
+
+ The objects in this array must adopt the `MGLOverlay` protocol. If no
+ overlays are associated with the map view, the value of this property is
+ `nil`.
+ */
@property (nonatomic, readonly, nullable) NS_ARRAY_OF(id <MGLOverlay>) *overlays;
/**