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 NS_REFINED_FOR_SWIFT;
  • 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;