MaplyPlateCarree
Objective-C
@interface MaplyPlateCarree : MaplyCoordinateSystem
Swift
class MaplyPlateCarree : MaplyCoordinateSystem
Plate Carree is lat/lon stretched out to its full extents.
This coordinate system is used when we’re tiling things over the whole earth, from -180 to +180 and from -90 to +90. Use this if you chopped up your data in that way.
-
Initialize with Plate Carree covering the whole globe.
Declaration
Objective-C
- (nonnull instancetype)init;
Swift
init()
-
Initialize with Plate Carree covering the whole globe.
Declaration
Objective-C
- (nullable instancetype)initFullCoverage;
Swift
init?(fullCoverage: ())
-
Initialize with the given bounding box (in radians)
Declaration
Objective-C
- (nullable instancetype)initWithBoundingBox:(MaplyBoundingBox)bbox;
Swift
init?(boundingBox bbox: MaplyBoundingBox)
-
Initialize with the given bounding box (in radians)
Declaration
Objective-C
- (nullable instancetype)initWithBoundingBoxD:(MaplyBoundingBoxD)bbox;
Swift
init?(boundingBoxD bbox: MaplyBoundingBoxD)