YMKZoomRange

@interface YMKZoomRange : NSObject

Describes the range of zoom levels. Zooming is allowed between zMin and zMax values.

Summary

Class methods

+ (nonnull YMKZoomRange *)zoomRangeWithZMin:( NSUInteger)zMin
                                       zMax:( NSUInteger)zMax;

Properties

@property (nonatomic, readonly) NSUInteger zMin;
Lower limit of zoom range, inclusive

@property (nonatomic, readonly) NSUInteger zMax;
Upper limit of zoom range, exclusive

Class methods

zoomRangeWithZMin:zMax:

+ (nonnull YMKZoomRange *)zoomRangeWithZMin:( NSUInteger)zMin
                                       zMax:( NSUInteger)zMax;


Properties

zMin

@property (nonatomic, readonly) NSUInteger zMin;

Lower limit of zoom range, inclusive.


zMax

@property (nonatomic, readonly) NSUInteger zMax;

Upper limit of zoom range, exclusive.