Class BingRestVehicleSpec
Contains information for a vehicle for a truck route calculation request.
Inheritance
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class BingRestVehicleSpec : Object
Constructors
BingRestVehicleSpec()
Initializes a new instance of the BingRestVehicleSpec class.
Declaration
public BingRestVehicleSpec()
Properties
DimensionUnit
The unit of measurement of width, height, length.
Declaration
public Nullable<DimensionUnit> DimensionUnit { get; set; }
Property Value
System.Nullable<DimensionUnit>
|
VehicleAvoidCrossWinds
Indicates if the vehicle shall avoid crosswinds.
Declaration
public Nullable<bool> VehicleAvoidCrossWinds { get; set; }
Property Value
System.Nullable<System.Boolean>
|
VehicleAvoidGroundingRisk
Indicates if the route shall avoid the risk of grounding.
Declaration
public Nullable<bool> VehicleAvoidGroundingRisk { get; set; }
Property Value
System.Nullable<System.Boolean>
|
VehicleAxels
The number of axles.
Declaration
public int VehicleAxels { get; set; }
Property Value
System.Int32
|
VehicleHazardousMaterials
List of one or more hazardous materials for which the vehicle is transporting.
Declaration
public Nullable<HazardousMaterial> VehicleHazardousMaterials { get; set; }
Property Value
System.Nullable<HazardousMaterial>
|
VehicleHazardousPermits
List of one or more hazardous materials for which the vehicle has a permit.
Declaration
public Nullable<HazardousPermit> VehicleHazardousPermits { get; set; }
Property Value
System.Nullable<HazardousPermit>
|
VehicleHeight
The height of the vehicle in the specified dimension units.
Declaration
public double VehicleHeight { get; set; }
Property Value
System.Double
|
VehicleLength
The length of the vehicle in the specified dimension units.
Declaration
public double VehicleLength { get; set; }
Property Value
System.Double
|
VehicleMaxGradient
The maximum gradient the vehicle can drive measured in degrees.
Declaration
public double VehicleMaxGradient { get; set; }
Property Value
System.Double
|
VehicleMinTurnRadius
The minimum required radius for the vehicle to turn in the specified dimension units.
Declaration
public double VehicleMinTurnRadius { get; set; }
Property Value
System.Double
|
VehicleSemi
Indicates if the truck is pulling a semi-trailer. Semi-trailer restrictions are mostly used in North America.
Declaration
public Nullable<bool> VehicleSemi { get; set; }
Property Value
System.Nullable<System.Boolean>
|
VehicleTrailers
The number of trailers.
Declaration
public int VehicleTrailers { get; set; }
Property Value
System.Int32
|
VehicleWeight
The weight of the vehicle in the specified weight units.
Declaration
public double VehicleWeight { get; set; }
Property Value
System.Double
|
VehicleWidth
The width of the vehicle in the specified dimension units.
Declaration
public double VehicleWidth { get; set; }
Property Value
System.Double
|
WeightUnit
The unit of measurement of weight.
Declaration
public Nullable<WeightUnit> WeightUnit { get; set; }
Property Value
System.Nullable<WeightUnit>
|