//----------------------------------------------------------------------- // // Copyright (c) 2016 Mapbox. All rights reserved. // //----------------------------------------------------------------------- namespace Mapbox.Directions { using Mapbox.Json; using Mapbox.Utils; /// /// A Maneuver from a directions API call. /// public class Maneuver { /// /// Gets or sets the bearing after. /// /// The bearing after. [JsonProperty("bearing_after")] public int BearingAfter { get; set; } /// /// Gets or sets the type. /// /// The type. [JsonProperty("type")] public string Type { get; set; } /// /// Gets or sets the modifier. /// /// The modifier. [JsonProperty("modifier")] public string Modifier { get; set; } /// /// Gets or sets the bearing before. /// /// The bearing before. [JsonProperty("bearing_before")] public int BearingBefore { get; set; } /// /// Gets or sets the location. /// /// The location. [JsonProperty("Location")] public Vector2d Location { get; set; } /// /// Gets or sets the instruction. /// /// The instruction. [JsonProperty("instruction")] public string Instruction { get; set; } } }