Maneuver

public enum Maneuver : Codable, CustomStringConvertible

Maneuver type to use in driving instructions.

Important

This is a Public Preview API. It may be changed or removed at any time.

Public

  • Provides a description of the Maneuver.

    Declaration

    Swift

    public var description: String { get }

    Return Value

    Description string.

  • Creates an instance of Maneuver from the given string.

    Declaration

    Swift

    public static func maneuver(from string: String) -> Maneuver?

    Parameters

    string

    String to create Maneuver from.

    Return Value

    Maneuver object.