MBMRenderedQueryGeometry


@interface MBMRenderedQueryGeometry : NSObject

Geometry for querying rendered features.

  • Deprecated

    Please use: ‘+from{TypeName}:’ instead.

    Undocumented

    Declaration

    Objective-C

    - (nonnull instancetype)initWithValue:(nonnull id)value __attribute__((deprecated("Please use: '+from{TypeName}:' instead.")));

    Swift

    init(value: Any)
  • Undocumented

    Declaration

    Objective-C

    + (nonnull instancetype)fromScreenBox:(nonnull MBMScreenBox *)value;

    Swift

    class func fromScreenBox(_ value: MBMScreenBox) -> Self
  • Undocumented

    Declaration

    Objective-C

    + (nonnull instancetype)fromScreenCoordinate:(nonnull MBMScreenCoordinate *)value;

    Swift

    class func fromScreenCoordinate(_ value: MBMScreenCoordinate) -> Self
  • Undocumented

    Declaration

    Objective-C

    + (nonnull instancetype)fromNSArray:(nonnull NSArray<MBMScreenCoordinate *> *)value;

    Swift

    class func fromNSArray(_ value: [MBMScreenCoordinate]) -> Self
  • Undocumented

    Declaration

    Objective-C

    - (BOOL)isScreenBox;

    Swift

    func isScreenBox() -> Bool
  • Undocumented

    Declaration

    Objective-C

    - (BOOL)isScreenCoordinate;

    Swift

    func isScreenCoordinate() -> Bool
  • Undocumented

    Declaration

    Objective-C

    - (BOOL)isNSArray;

    Swift

    func isNSArray() -> Bool
  • Undocumented

    Declaration

    Objective-C

    - (nonnull MBMScreenBox *)getScreenBox __attribute((ns_returns_retained));

    Swift

    func getScreenBox() -> MBMScreenBox
  • Undocumented

    Declaration

    Objective-C

    - (nonnull MBMScreenCoordinate *)getScreenCoordinate __attribute((ns_returns_retained));

    Swift

    func getScreenCoordinate() -> MBMScreenCoordinate
  • Undocumented

    Declaration

    Objective-C

    - (nonnull NSArray<MBMScreenCoordinate *> *)getNSArray __attribute((ns_returns_retained));

    Swift

    func getNSArray() -> [MBMScreenCoordinate]
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, nonnull) id value

    Swift

    var value: Any { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly) MBMRenderedQueryGeometryType type

    Swift

    var type: RenderedQueryGeometryType { get }