MBMSourceQueryOptions.h 890 B

1234567891011121314151617181920212223242526
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Options for querying source features. */
  4. NS_SWIFT_NAME(SourceQueryOptions)
  5. __attribute__((visibility ("default")))
  6. @interface MBMSourceQueryOptions : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithSourceLayerIds:(nullable NSArray<NSString *> *)sourceLayerIds
  12. filter:(nonnull id)filter;
  13. /** Source layer IDs to include in the query. */
  14. @property (nonatomic, readonly, nullable, copy) NSArray<NSString *> *sourceLayerIds;
  15. /** Filters the returned features with an expression */
  16. @property (nonatomic, readonly, nonnull, copy) id filter;
  17. @end