Click or drag to resize

Route Constructor (RouteStop, RouteStop)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Create a new route with given start and end points.

Namespace:  Telogis.GeoBase.Routing
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public Route(
	RouteStop start,
	RouteStop end
)

Parameters

start
Type: Telogis.GeoBaseRouteStop
A RouteStop representing the start of the route.
end
Type: Telogis.GeoBaseRouteStop
A RouteStop representing the end of the route.
Examples
C#
// Create route start and end locations
RouteStop start = new RouteStop(new LatLon(33.65, -117.92));
RouteStop end = new RouteStop(new LatLon(33.64, -117.92));

// Create a Route with the RouteStops
Route myRoute = new Route(start, end);
See Also