INavigationStatusSetEta Method | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Derived classes should implement this method to display arrival (time and distance) estimates.
Namespace:
Telogis.GeoBase.Navigation
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax void SetEta(
TimeSpan eta,
string distRemaining
)
Sub SetEta (
eta As TimeSpan,
distRemaining As String
)
Parameters
- eta
- Type: SystemTimeSpan
The estimated time before arrival. - distRemaining
- Type: SystemString
The distance between the current location and the end of the route.
Remarks
Typically, a navigation-based application will show a
LabelBox
to display arrival estimates (eg, "Destination in 3.4 miles, 5 minutes away"). This method should then
be implemented to update the LabelBox with the given arrival estimates.
See Also