Click or drag to resize

IRouteCalculatorUpdatePosition Method

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Updates the Position details (location, signal quality, speed and heading) of the vehicle.

Namespace:  Telogis.GeoBase.Navigation
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
void UpdatePosition(
	Position pos
)

Parameters

pos
Type: Telogis.GeoBase.NavigationPosition
The current Position as returned by the GPS.
Remarks
This is called by the Navigator every time it receives an update from the GPS. Typically this method is not required and should remain empty.

This method is intended for use with IRouteCalculator implementations that need to track how far along a route a vehicle has traveled. For example, WaypointRouteCalculator uses it to determine which waypoints have been visited so that if a vehicle travels off-route then previously visited waypoints can be ignored when the new route is calculated.

See Also