NSDK_MatchedWayPoint
@interface NSDK_MatchedWayPoint : NSObject
Specifies a real-world MatchedWayPoint in Mercator format.
@author PTV AG Karlsruhe
-
Undocumented
Declaration
Objective-C
- (instancetype) init;
Swift
init!()
-
initialize with mercator longitude and latitude course and retraction
Declaration
Objective-C
- (instancetype)initWithX:(int)x Y:(int)y course:(short)course retraction:(short)retraction;
Swift
init!(x: Int32, y: Int32, course: Int16, retraction: Int16)
-
Returns the longitude of the mercator MatchedWayPoint.
Declaration
Objective-C
- (int)getX;
Swift
func getX() -> Int32
Return Value
the longitude.
-
Returns the latitude of the mercator MatchedWayPoint.
Declaration
Objective-C
- (int)getY;
Swift
func getY() -> Int32
Return Value
the latitude.
-
Returns the course of the mercator MatchedWayPoint.
Declaration
Objective-C
- (short)getCourse;
Swift
func getCourse() -> Int16
Return Value
the course.
-
Sets the longitude of the mercator MatchedWayPoint.
Declaration
Objective-C
- (void)setX:(int)x;
Swift
func setX(_ x: Int32)
Parameters
x
the longitude.
-
Sets the latitude of the mercator MatchedWayPoint.
Declaration
Objective-C
- (void)setY:(int)y;
Swift
func setY(_ y: Int32)
Parameters
y
the latitude.
-
Sets the course of the mercator MatchedWayPoint.
Declaration
Objective-C
- (void)setCourse:(short)course;
Swift
func setCourse(_ course: Int16)
Parameters
course
the course.
-
Returns the retraction of the mercator MatchedWayPoint.
Declaration
Objective-C
- (short)getRetraction;
Swift
func getRetraction() -> Int16
Return Value
the retraction.
-
Sets the retraction of the mercator MatchedWayPoint.
Declaration
Objective-C
- (void)setRetraction:(short)retraction;
Swift
func setRetraction(_ retraction: Int16)
Parameters
retraction
the retraction.