MBMMapConstants.h 810 B

123456789101112131415161718192021
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** Collection of useful constants. */
  4. NS_SWIFT_NAME(MapConstants)
  5. __attribute__((visibility ("default")))
  6. @interface MBMMapConstants : NSObject
  7. /** The map view's minimum pitch in degrees. */
  8. @property (nonatomic, class, readonly) double MinPitch;
  9. /** The map view's maximum pitch in degrees. */
  10. @property (nonatomic, class, readonly) double MaxPitch;
  11. /** The map view's minimum zoom. */
  12. @property (nonatomic, class, readonly) double MinZoom;
  13. /** The map view's maximum zoom. */
  14. @property (nonatomic, class, readonly) double MaxZoom;
  15. /** Default transition duration in milliseconds. */
  16. @property (nonatomic, class, readonly) uint64_t DefaultTransitionDuration;
  17. @end