INavigationStatusSetInstruction Method | |
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Derived classes should implement this method to update navigation instructions displayed
to the user.
Namespace:
Telogis.GeoBase.Navigation
Assembly:
geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax void SetInstruction(
string distance,
string instruction
)
Sub SetInstruction (
distance As String,
instruction As String
)
Parameters
- distance
- Type: SystemString
The distance to the maneuver. - instruction
- Type: SystemString
The instruction to perform after the specified
distance has been traveled.
Remarks
Typically, a navigation-based application will show a
LabelBox
to display instructions for upcoming navigation events. This method should then be implemented
to update the LabelBox with the distance to (passed as the distance parameter), and action
(passed as the instruction parameter) to take at, the next navigation event.
See Also