| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- @class MBMScreenBox;
- @class MBMScreenCoordinate;
- // NOLINTNEXTLINE(modernize-use-using)
- typedef NS_ENUM(NSInteger, MBMRenderedQueryGeometryType)
- {
- MBMRenderedQueryGeometryTypeScreenBox,
- MBMRenderedQueryGeometryTypeScreenCoordinate,
- MBMRenderedQueryGeometryTypeNSArray
- } NS_SWIFT_NAME(RenderedQueryGeometryType);
- /** Geometry for querying rendered features. */
- NS_SWIFT_NAME(RenderedQueryGeometry)
- __attribute__((visibility ("default")))
- @interface MBMRenderedQueryGeometry : NSObject
- - (nonnull instancetype)initWithValue:(nonnull id)value __attribute__((deprecated("Please use: '+from{TypeName}:' instead.")));
- + (nonnull instancetype)fromScreenBox:(nonnull MBMScreenBox *)value;
- + (nonnull instancetype)fromScreenCoordinate:(nonnull MBMScreenCoordinate *)value;
- + (nonnull instancetype)fromNSArray:(nonnull NSArray<MBMScreenCoordinate *> *)value;
- - (BOOL)isScreenBox;
- - (BOOL)isScreenCoordinate;
- - (BOOL)isNSArray;
- - (nonnull MBMScreenBox *)getScreenBox __attribute((ns_returns_retained));
- - (nonnull MBMScreenCoordinate *)getScreenCoordinate __attribute((ns_returns_retained));
- - (nonnull NSArray<MBMScreenCoordinate *> *)getNSArray __attribute((ns_returns_retained));
- @property (nonatomic, nonnull) id value;
- @property (nonatomic, readonly) MBMRenderedQueryGeometryType type;
- @end
|