SITTile
Objective-C
@interface SITTile : NSObject
Swift
class SITTile : NSObject
Representation of the floor map in tile that represents an image at zoom level with coordinates x, y
-
The type of resources that this SITTile contains
Declaration
Objective-C
@property (nonatomic) SITTileResource resourceType;
Swift
var resourceType: SITTileResource { get set }
-
When resourceType is of type SITTileResourceUrl it will contain the url to the tile image on dashboard, otherwise this will be null
Declaration
Objective-C
@property (nonatomic, strong) NSURL *_Nullable url;
Swift
var url: URL? { get set }
-
When resourceType is of type SITTileResourceFile it will contain the path to retrieve the tile image from the local file system of the app
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable path;
Swift
var path: String? { get set }