MBMProjectedMeters
@interface MBMProjectedMeters : NSObject
ProjectedMeters is a coordinate in a specific Spherical Mercator projection.
This specific Spherical Mercator projection assumes the Earth is a sphere with a radius of 6,378,137 meters. Coordinates are determined as distances, in meters, on the surface of that sphere.
-
Unavailable
Undocumented
Declaration
Objective-C
- (nonnull instancetype)init NS_UNAVAILABLE;
-
Unavailable
Undocumented
Declaration
Objective-C
+ (nonnull instancetype)new NS_UNAVAILABLE;
-
Undocumented
Declaration
Objective-C
- (nonnull instancetype)initWithNorthing:(double)northing easting:(double)easting;
Swift
init(northing: Double, easting: Double)
-
Projected meters in north direction.
Declaration
Objective-C
@property (nonatomic, readonly) double northing;
Swift
var northing: Double { get }
-
Projected meters in east direction.
Declaration
Objective-C
@property (nonatomic, readonly) double easting;
Swift
var easting: Double { get }