summaryrefslogtreecommitdiff
path: root/platform/darwin/src/NSArray+MGLAdditions.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/darwin/src/NSArray+MGLAdditions.h')
-rw-r--r--platform/darwin/src/NSArray+MGLAdditions.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/platform/darwin/src/NSArray+MGLAdditions.h b/platform/darwin/src/NSArray+MGLAdditions.h
deleted file mode 100644
index c4dfd8207b..0000000000
--- a/platform/darwin/src/NSArray+MGLAdditions.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#import <Foundation/Foundation.h>
-#import <CoreLocation/CoreLocation.h>
-
-#import <mbgl/util/feature.hpp>
-
-@interface NSArray (MGLAdditions)
-
-- (std::vector<mbgl::Value>)mgl_vector;
-
-/** Returns a string resulting from inserting a separator between each attributed string in the array */
-- (NSAttributedString *)mgl_attributedComponentsJoinedByString:(NSString *)separator;
-
-/**
- Converts std::vector<CLLocationCoordinate> into an NSArray containing dictionary
- representations of coordinates with the following structure:
- [{"latitude": lat, "longitude": lng}]
- */
-+ (NSArray *)mgl_coordinatesFromCoordinates:(std::vector<CLLocationCoordinate2D>)coords;
-
-/**
- Converts the receiver into a std::vector<CLLocationCoordinate>.
- Receiver must conform to the following structure:
- [{"latitude": lat, "longitude": lng}]
- */
-- (std::vector<CLLocationCoordinate2D>)mgl_coordinates;
-
-@end