MBMConstrainMode.h 521 B

123456789101112131415
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Describes whether to constrain the map in both axes or only vertically e.g. while panning. */
  4. // NOLINTNEXTLINE(modernize-use-using)
  5. typedef NS_ENUM(NSInteger, MBMConstrainMode)
  6. {
  7. /** No constrains. */
  8. MBMConstrainModeNone,
  9. /** Constrain to height only */
  10. MBMConstrainModeHeightOnly,
  11. /** Constrain both width and height axes. */
  12. MBMConstrainModeWidthAndHeight
  13. } NS_SWIFT_NAME(ConstrainMode);