RouteMatrix Constructor (RouteStop, RoutingStrategy, String, CancellationToken) | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Create a new Matrix from the given set of
RouteStops, and record the
actions taken during calculation of this RouteMatrix to the given journal file. The journal file can then be
loaded later to speed up the construction of an identical RouteMatrix.
Namespace:
Telogis.GeoBase.Routing
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax public RouteMatrix(
RouteStop[] InitialStops,
RoutingStrategy Strategy,
string journalFile,
CancellationToken cancelToken
)
Public Sub New (
InitialStops As RouteStop(),
Strategy As RoutingStrategy,
journalFile As String,
cancelToken As CancellationToken
)
Parameters
- InitialStops
- Type: Telogis.GeoBaseRouteStop
The stops to be used to intitalize the matrix,
as an array of RouteStops. - Strategy
- Type: Telogis.GeoBase.RoutingRoutingStrategy
A RoutingStrategy
to be used to calculate the costs within this matrix. - journalFile
- Type: SystemString
A string to record all of the actions taken to calculate this RouteMatrix. - cancelToken
- Type: Telogis.GeoBase.ConcurrencyCancellationToken
The token to request the calculation cancellation.
See Also