CRSGeographicBoundingBox

Objective-C

@interface CRSGeographicBoundingBox : NSObject

Swift

class CRSGeographicBoundingBox : NSObject

Geographic Bounding Box

  • Lower Left Latitude

    Declaration

    Objective-C

    @property (nonatomic) double lowerLeftLatitude;

    Swift

    var lowerLeftLatitude: Double { get set }
  • Lower Left Latitude Text

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *lowerLeftLatitudeText;

    Swift

    var lowerLeftLatitudeText: String! { get set }
  • Lower Left Longitude

    Declaration

    Objective-C

    @property (nonatomic) double lowerLeftLongitude;

    Swift

    var lowerLeftLongitude: Double { get set }
  • Lower Left Longitude Text

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *lowerLeftLongitudeText;

    Swift

    var lowerLeftLongitudeText: String! { get set }
  • Upper Right Latitude

    Declaration

    Objective-C

    @property (nonatomic) double upperRightLatitude;

    Swift

    var upperRightLatitude: Double { get set }
  • Upper Right Latitude Text

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *upperRightLatitudeText;

    Swift

    var upperRightLatitudeText: String! { get set }
  • Upper Right Longitude

    Declaration

    Objective-C

    @property (nonatomic) double upperRightLongitude;

    Swift

    var upperRightLongitude: Double { get set }
  • Upper Right Longitude Text

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *upperRightLongitudeText;

    Swift

    var upperRightLongitudeText: String! { get set }
  • Create

    Declaration

    Objective-C

    + (CRSGeographicBoundingBox *)create;

    Swift

    class func create() -> CRSGeographicBoundingBox!

    Return Value

    new instance

  • Initialize

    Declaration

    Objective-C

    - (instancetype)init;

    Swift

    init!()

    Return Value

    new instance

  • Initialize

    Declaration

    Objective-C

    - (instancetype)initWithLowerLeftLatitude:(double)lowerLeftLatitude
                        andLowerLeftLongitude:(double)lowerLeftLongitude
                        andUpperRightLatitude:(double)upperRightLatitude
                       andUpperRightLongitude:(double)upperRightLongitude;

    Swift

    init!(lowerLeftLatitude: Double, andLowerLeftLongitude lowerLeftLongitude: Double, andUpperRightLatitude upperRightLatitude: Double, andUpperRightLongitude upperRightLongitude: Double)

    Parameters

    lowerLeftLatitude

    lower left latitude

    lowerLeftLongitude

    lower left longitude

    upperRightLatitude

    upper right latitude

    upperRightLongitude

    upper right longitude

    Return Value

    new instance

  • Initialize

    Declaration

    Objective-C

    - (instancetype)initWithLowerLeftLatitudeText:(NSString *)lowerLeftLatitude
                        andLowerLeftLongitudeText:(NSString *)lowerLeftLongitude
                        andUpperRightLatitudeText:(NSString *)upperRightLatitude
                       andUpperRightLongitudeText:(NSString *)upperRightLongitude;

    Swift

    init!(lowerLeftLatitudeText lowerLeftLatitude: String!, andLowerLeftLongitudeText lowerLeftLongitude: String!, andUpperRightLatitudeText upperRightLatitude: String!, andUpperRightLongitudeText upperRightLongitude: String!)

    Parameters

    lowerLeftLatitude

    lower left latitude

    lowerLeftLongitude

    lower left longitude

    upperRightLatitude

    upper right latitude

    upperRightLongitude

    upper right longitude

    Return Value

    new instance