MBMMercatorCoordinate
@interface MBMMercatorCoordinate : NSObject
Describes a point on the map in Mercator projection.
-
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)initWithX:(double)x y:(double)y;
Swift
init(x: Double, y: Double)
-
A value representing the x position of this coordinate.
Declaration
Objective-C
@property (nonatomic, readonly) double x;
Swift
var x: Double { get }
-
A value representing the y position of this coordinate.
Declaration
Objective-C
@property (nonatomic, readonly) double y;
Swift
var y: Double { get }
-
Undocumented
Declaration
Objective-C
- (BOOL)isEqualToMercatorCoordinate:(nonnull MBMMercatorCoordinate *)other;
Swift
func isEqual(to other: MercatorCoordinate) -> Bool