summaryrefslogtreecommitdiff
path: root/include/mbgl/darwin/MGLPolyline.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/darwin/MGLPolyline.h')
-rw-r--r--include/mbgl/darwin/MGLPolyline.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/mbgl/darwin/MGLPolyline.h b/include/mbgl/darwin/MGLPolyline.h
deleted file mode 100644
index c28299c7e0..0000000000
--- a/include/mbgl/darwin/MGLPolyline.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#import <Foundation/Foundation.h>
-#import <CoreLocation/CoreLocation.h>
-
-#import "MGLMultiPoint.h"
-#import "MGLOverlay.h"
-
-#import "MGLTypes.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-/** The `MGLPolyline` class represents a shape consisting of one or more points that define connecting line segments. The points are connected end-to-end in the order they are provided. The first and last points are not connected to each other. */
-@interface MGLPolyline : MGLMultiPoint <MGLOverlay>
-
-/**
- Creates and returns an `MGLPolyline` object from the specified set of coordinates.
-
- @param coords The array of coordinates defining the shape. The data in this array is copied to the new object.
- @param count The number of items in the `coords` array.
- @return A new polyline object.
- */
-+ (instancetype)polylineWithCoordinates:(CLLocationCoordinate2D *)coords
- count:(NSUInteger)count;
-
-@end
-
-NS_ASSUME_NONNULL_END