summaryrefslogtreecommitdiff
path: root/include/mbgl/darwin/MGLPointAnnotation.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/darwin/MGLPointAnnotation.h')
-rw-r--r--include/mbgl/darwin/MGLPointAnnotation.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/mbgl/darwin/MGLPointAnnotation.h b/include/mbgl/darwin/MGLPointAnnotation.h
deleted file mode 100644
index d186cbff18..0000000000
--- a/include/mbgl/darwin/MGLPointAnnotation.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#import <Foundation/Foundation.h>
-#import <CoreLocation/CoreLocation.h>
-
-#import "MGLShape.h"
-
-#import "MGLTypes.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. */
-@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