Warning

This feature is available in the Full MapKit SDK version

MMKBicycleWayPoint

@interface MMKBicycleWayPoint : 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 MMKBicycleWayPoint *)wayPointWithPosition:(nonnull MMKPoint *)position
                                selectedArrivalPoint:(nullable MMKPoint *)selectedArrivalPoint;

Properties

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

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

Class methods

wayPointWithPosition:selectedArrivalPoint:

+ (nonnull MMKBicycleWayPoint *)wayPointWithPosition:(nonnull MMKPoint *)position
                                selectedArrivalPoint:(nullable MMKPoint *)selectedArrivalPoint;


Properties

position

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

Coordinates of the original waypoint from the request.


selectedArrivalPoint

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

Coordinates of the selected arrival point.

Optional field, can be nil.