MBMRenderedQueryOptions


@interface MBMRenderedQueryOptions : NSObject

Options for querying rendered features.

  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (nonnull instancetype)init NS_UNAVAILABLE;
  • Unavailable

    Undocumented

    Declaration

    Objective-C

    + (nonnull instancetype)new NS_UNAVAILABLE;
  • Undocumented

    Declaration

    Objective-C

    - (nonnull instancetype)initWithLayerIds:(nullable NSArray<NSString *> *)layerIds
                                      filter:(nullable id)filter;

    Swift

    init(layerIds: [String]?, filter: Any?)
  • Layer IDs to include in the query.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSArray<NSString *> *layerIds;

    Swift

    var layerIds: [String]? { get }
  • Filters the returned features with an expression

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) id filter;

    Swift

    var filter: Any? { get }