Warning

This feature is available in the Full MapKit SDK version

YMKBicycleWayPoint

@interface YMKBicycleWayPoint : NSObject

A waypoint is the origin, destination or intermediate destination on the route. For each way point, the corresponding selected arrival point can be stored.

Summary

Class methods

+ (nonnull YMKBicycleWayPoint *)wayPointWithPosition:(nonnull YMKPoint *)position
                                selectedArrivalPoint:(nullable YMKPoint *)selectedArrivalPoint;

Properties

@property (nonatomic, readonly, nonnull) YMKPoint *position;
Coordinates of the original waypoint from the request

@property (nonatomic, readonly, nullable) YMKPoint *selectedArrivalPoint;
Coordinates of the selected arrival point

Class methods

wayPointWithPosition:selectedArrivalPoint:

+ (nonnull YMKBicycleWayPoint *)wayPointWithPosition:(nonnull YMKPoint *)position
                                selectedArrivalPoint:(nullable YMKPoint *)selectedArrivalPoint;


Properties

position

@property (nonatomic, readonly, nonnull) YMKPoint *position;

Coordinates of the original waypoint from the request.


selectedArrivalPoint

@property (nonatomic, readonly, nullable) YMKPoint *selectedArrivalPoint;

Coordinates of the selected arrival point.

Optional field, can be nil.