summaryrefslogtreecommitdiff
path: root/platform/ios/src/MGLMapAccessibilityElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/src/MGLMapAccessibilityElement.h')
-rw-r--r--platform/ios/src/MGLMapAccessibilityElement.h54
1 files changed, 0 insertions, 54 deletions
diff --git a/platform/ios/src/MGLMapAccessibilityElement.h b/platform/ios/src/MGLMapAccessibilityElement.h
deleted file mode 100644
index 6c5fad62ce..0000000000
--- a/platform/ios/src/MGLMapAccessibilityElement.h
+++ /dev/null
@@ -1,54 +0,0 @@
-#import <UIKit/UIKit.h>
-
-#import "MGLFoundation.h"
-
-NS_ASSUME_NONNULL_BEGIN
-
-@protocol MGLFeature;
-
-/// Unique identifier representing a single annotation in mbgl.
-typedef uint64_t MGLAnnotationTag;
-
-/** An accessibility element representing something that appears on the map. */
-MGL_EXPORT
-@interface MGLMapAccessibilityElement : UIAccessibilityElement
-
-@end
-
-/** An accessibility element representing a map annotation. */
-@interface MGLAnnotationAccessibilityElement : MGLMapAccessibilityElement
-
-/** The tag of the annotation represented by this element. */
-@property (nonatomic) MGLAnnotationTag tag;
-
-- (instancetype)initWithAccessibilityContainer:(id)container tag:(MGLAnnotationTag)identifier NS_DESIGNATED_INITIALIZER;
-
-@end
-
-/** An accessibility element representing a map feature. */
-MGL_EXPORT
-@interface MGLFeatureAccessibilityElement : MGLMapAccessibilityElement
-
-/** The feature represented by this element. */
-@property (nonatomic, strong) id <MGLFeature> feature;
-
-- (instancetype)initWithAccessibilityContainer:(id)container feature:(id <MGLFeature>)feature NS_DESIGNATED_INITIALIZER;
-
-@end
-
-/** An accessibility element representing a place feature. */
-MGL_EXPORT
-@interface MGLPlaceFeatureAccessibilityElement : MGLFeatureAccessibilityElement
-@end
-
-/** An accessibility element representing a road feature. */
-MGL_EXPORT
-@interface MGLRoadFeatureAccessibilityElement : MGLFeatureAccessibilityElement
-@end
-
-/** An accessibility element representing the MGLMapView at large. */
-MGL_EXPORT
-@interface MGLMapViewProxyAccessibilityElement : UIAccessibilityElement
-@end
-
-NS_ASSUME_NONNULL_END