CRSExtent
Objective-C
@interface CRSExtent : NSObject
Swift
class CRSExtent : NSObject
Extent
-
Area Description
Declaration
Objective-C
@property (nonatomic, strong) NSString *areaDescription;Swift
var areaDescription: String! { get set } -
Geographic Bounding Box
Declaration
Objective-C
@property (nonatomic, strong) CRSGeographicBoundingBox *geographicBoundingBox;Swift
var geographicBoundingBox: CRSGeographicBoundingBox! { get set } -
Vertical Extent
Declaration
Objective-C
@property (nonatomic, strong) CRSVerticalExtent *verticalExtent;Swift
var verticalExtent: CRSVerticalExtent! { get set } -
Temporal Extent
Declaration
Objective-C
@property (nonatomic, strong) CRSTemporalExtent *temporalExtent;Swift
var temporalExtent: CRSTemporalExtent! { get set } -
Create
Declaration
Objective-C
+ (CRSExtent *)create;Swift
class func create() -> CRSExtent!Return Value
new instance
-
Initialize
Declaration
Objective-C
- (instancetype)init;Swift
init!()Return Value
new instance
-
Has an area description
Declaration
Objective-C
- (BOOL)hasAreaDescription;Swift
func hasAreaDescription() -> BoolReturn Value
true if has area description
-
Has a geographic bounding box
Declaration
Objective-C
- (BOOL)hasGeographicBoundingBox;Swift
func hasGeographicBoundingBox() -> BoolReturn Value
true if has geographic bounding box
-
Has a vertical extent
Declaration
Objective-C
- (BOOL)hasVerticalExtent;Swift
func hasVerticalExtent() -> BoolReturn Value
true if has vertical extent
-
Has a temporal extent
Declaration
Objective-C
- (BOOL)hasTemporalExtent;Swift
func hasTemporalExtent() -> BoolReturn Value
true if has temporal extent
View on GitHub
CRSExtent Class Reference