ProjectionWGS84Object
Objective-C
@interface ProjectionWGS84Object : ProjectionObject
Swift
class ProjectionWGS84Object : ProjectionObject
This class encapsulates WGS84 ( World Geodetic System ) projection information.
-
Initializes and returns a newly allocated object using the coordinates.
Declaration
Objective-C
- (nonnull instancetype)initWithCoordinates: (nonnull CoordinatesObject *)coordinates;
Swift
init(coordinates: CoordinatesObject)
-
Get the coordinates of wgs84 projection.
Declaration
Objective-C
- (nonnull CoordinatesObject *)getCoordinates;
Swift
func getCoordinates() -> CoordinatesObject
-
Set the coordinates of wgs84 projection.
Declaration
Objective-C
- (void)setCoordinates:(nonnull CoordinatesObject *)object;
Swift
func setCoordinates(_ object: CoordinatesObject)