Location Constructor (String, Int32, Double, Double) |
Initializes a new instance of the Location class.
Namespace:
VRSolver
Assembly:
VRSolver (in VRSolver.dll) Version: 1.13.0.0
Syntaxpublic Location(
string ID,
int index,
double lat,
double lon
)
Public Sub New (
ID As String,
index As Integer,
lat As Double,
lon As Double
)
public:
Location(
String^ ID,
int index,
double lat,
double lon
)
new :
ID : string *
index : int *
lat : float *
lon : float -> Location
Parameters
- ID
- Type: SystemString
An ID for the location (only used when visualising solutions). - index
- Type: SystemInt32
The location's index in the TravelTime matrix. - lat
- Type: SystemDouble
The latitude for the location (only used when visualising solutions). - lon
- Type: SystemDouble
The longitude for the location (only used when visualising solutions).
See Also