GPKGTileReprojectionZoom
Objective-C
@interface GPKGTileReprojectionZoom : NSObject
Swift
class GPKGTileReprojectionZoom : NSObject
Optional Tile Reprojection configuration for a zoom level
-
Reprojected new zoom level
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *toZoom;
Swift
var toZoom: NSNumber! { get set }
-
Number of columns at the zoom level
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *matrixWidth;
Swift
var matrixWidth: NSNumber! { get set }
-
Number of rows at the zoom level
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *matrixHeight;
Swift
var matrixHeight: NSNumber! { get set }
-
Tile width in pixels
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *tileWidth;
Swift
var tileWidth: NSNumber! { get set }
-
Tile height in pixels
Declaration
Objective-C
@property (nonatomic, strong) NSNumber *tileHeight;
Swift
var tileHeight: NSNumber! { get set }
-
Initialize zoom level reprojection configuration
Declaration
Objective-C
- (instancetype)initWithZoom:(int)zoom;
Swift
init!(zoom: Int32)
Parameters
zoom
zoom level
Return Value
tile reprojection zoom
-
Get the zoom level
Declaration
Objective-C
- (int)zoom;
Swift
func zoom() -> Int32
Return Value
zoom level
-
Has to zoom level value
Declaration
Objective-C
- (BOOL)hasToZoom;
Swift
func hasToZoom() -> Bool
Return Value
true if has value
-
Has matrix width value
Declaration
Objective-C
- (BOOL)hasMatrixWidth;
Swift
func hasMatrixWidth() -> Bool
Return Value
true if has value
-
Has matrix height value
Declaration
Objective-C
- (BOOL)hasMatrixHeight;
Swift
func hasMatrixHeight() -> Bool
Return Value
true if has value
-
Has tile width value
Declaration
Objective-C
- (BOOL)hasTileWidth;
Swift
func hasTileWidth() -> Bool
Return Value
true if has value
-
Has tile height value
Declaration
Objective-C
- (BOOL)hasTileHeight;
Swift
func hasTileHeight() -> Bool
Return Value
true if has value