MBMCanonicalTileID.h 864 B

123456789101112131415161718192021222324252627282930
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Represents a tile coordinate. */
  4. NS_SWIFT_NAME(CanonicalTileID)
  5. __attribute__((visibility ("default")))
  6. @interface MBMCanonicalTileID : 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)initWithZ:(uint8_t)z
  12. x:(uint32_t)x
  13. y:(uint32_t)y;
  14. /** The z value of the coordinate (zoom-level). */
  15. @property (nonatomic, readonly) uint8_t z;
  16. /** The x value of the coordinate. */
  17. @property (nonatomic, readonly) uint32_t x;
  18. /** The y value of the coordinate. */
  19. @property (nonatomic, readonly) uint32_t y;
  20. @end