Class TruckWaypoint
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI.Map.Bing
Assembly: Telerik.WinControls.RadMap.dll
Syntax
public class TruckWaypoint
Constructors
TruckWaypoint(Double, Double)
Declaration
public TruckWaypoint(double latitude, double longitude)
Parameters
System.Double
latitude
|
System.Double
longitude
|
TruckWaypoint(Double, Double, Boolean)
Declaration
public TruckWaypoint(double latitude, double longitude, bool isViaPoint)
Parameters
System.Double
latitude
|
System.Double
longitude
|
System.Boolean
isViaPoint
|
TruckWaypoint(String)
Declaration
public TruckWaypoint(string address)
Parameters
System.String
address
|
TruckWaypoint(String, Boolean)
Declaration
public TruckWaypoint(string address, bool isViaPoint)
Parameters
System.String
address
|
System.Boolean
isViaPoint
|
TruckWaypoint(String, Double, Double, Boolean)
Declaration
public TruckWaypoint(string address, double latitude, double longitude, bool isViaPoint)
Parameters
System.String
address
|
System.Double
latitude
|
System.Double
longitude
|
System.Boolean
isViaPoint
|
Properties
Address
Gets or sets the address this waypoint represents.
Declaration
public string Address { get; set; }
Property Value
System.String
|
IsViaPoint
Gets or sets whether this point is a via waypoint.
Declaration
public bool IsViaPoint { get; set; }
Property Value
System.Boolean
|
Latitude
Gets or sets the latitude of this waypoint.
Declaration
public double Latitude { get; set; }
Property Value
System.Double
|
Longitude
Gets or sets the longitude of this waypoint.
Declaration
public double Longitude { get; set; }
Property Value
System.Double
|