Make ASMapNode vend its annotations

This commit is contained in:
Adlai Holler
2016-02-25 10:32:13 -08:00
parent e53c0c2d8c
commit 2fbc7b0942
2 changed files with 13 additions and 3 deletions

View File

@@ -48,10 +48,9 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, weak) id <MKMapViewDelegate> mapDelegate;
/**
* @discussion This method sets the annotations of the static map view and also to the live map view. Passing an empty array clears the map of any annotations.
* @param annotations An array of objects that conform to the MKAnnotation protocol
* @abstract The annotations to display on the map.
*/
- (void)setAnnotations:(NSArray<id<MKAnnotation>> *)annotations;
@property (nonatomic, copy) NSArray<id<MKAnnotation>> *annotations;
@end