summaryrefslogtreecommitdiff
path: root/platform/darwin/src/MGLPointAnnotation.h
blob: 6b2e1dd43a193803044d661f95c37e476827705a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>

#import "MGLFoundation.h"
#import "MGLShape.h"

NS_ASSUME_NONNULL_BEGIN

/**
 The `MGLPointAnnotation` class defines a concrete annotation object located at
 a specified point. You can use this class, rather than define your own, in
 situations where all you want to do is associate a point on the map with a
 title.
 */
MGL_EXPORT
@interface MGLPointAnnotation : MGLShape

/**
 The coordinate point of the annotation, specified as a latitude and longitude.
 */
@property (nonatomic, assign) CLLocationCoordinate2D coordinate;

@end

NS_ASSUME_NONNULL_END