VMMSWaypath

@interface VMMSWaypath : NSObject

Model to represent a waypath and any other data that may need to be associated with a waypath.

Since

1.0
  • Designated initializer.

    Declaration

    Swift

    - (instancetype)initWithShortestPath:(NSArray *)waypoints;

    Parameters

    waypoints

    An array of VMMSWaypoint objects that make up the waypath.

    Return Value

    A VMMSWaypath instance.

  • An array of VMMSWaypoint objects.

    Declaration

    Swift

    @property (readwrite, strong, nonatomic) NSArray<VMMSWaypoint *> *waypoints;