Class RouteRequest
Contains the properties needed to make a CalculateRoute request.
Inherited Members
Namespace: Telerik.WinControls.UI.Map.Bing
Assembly: Telerik.WinControls.RadMap.dll
Syntax
public class RouteRequest : RequestBase
Constructors
RouteRequest()
Initializes a new instance of the RouteRequest class.
Declaration
public RouteRequest()
Properties
Options
Gets or sets options used to refine the route request.
Declaration
public RouteOptions Options { get; set; }
Property Value
RouteOptions
|
RoutePoints
Gets or sets a collection where each element represents a stop in the route. Elements could be Waypoint or ViaWaypoint. Required.
Declaration
public List<Waypoint> RoutePoints { get; set; }
Property Value
System.Collections.Generic.List<Waypoint>
|
Waypoints
Gets or sets a collection where each element represents a stop in the route. Required.
Declaration
[Obsolete("Use the RoutePoints property instead. You can directly use the string value you add to this collection in the constructor of the Waypoint class.")]
public List<string> Waypoints { get; set; }
Property Value
System.Collections.Generic.List<System.String>
|