Click or drag to resize

INavigationStatus Interface

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Supports navigational status messages (visual and audible) such as turn instructions, directions, ETA and GPS info.

Namespace:  Telogis.GeoBase.Navigation
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public interface INavigationStatus : IMapRenderer, 
	IMapMouseHandler

The INavigationStatus type exposes the following members.

Properties
  NameDescription
Public propertyMapMouseEventsHandler
Gets the MapMouseEventsHandler.
(Inherited from IMapMouseHandler.)
Public propertyCode exampleRequiredRendermodes
Specifies at which stages of rendering this renderer should be called.
(Inherited from IMapRenderer.)
Top
Methods
  NameDescription
Public methodHideEta
Derived classes should implement this method to hide arrival time/distance estimates. Typically, arrival time/distance estimates will need to be hidden when the user travels off-route or causes the route to be recalculated.
Public methodHideInstructions
Derived classes should implement this method to hide navigation instructions presented to the user. Typically, instructions will need to be hidden after the event has occurred and before the next event is due to be presented.
Public methodHideUpcomingTurn
Derived classes should implement this method to hide information alerting the user of an upcoming turn.
Public methodCode exampleHitTest
Test if the given x,y coordinates lie within the bounds of this item.
(Inherited from IMapMouseHandler.)
Public methodCode exampleRender
Called when this item should render itself on the map.
(Inherited from IMapRenderer.)
Public methodSetAddress
Derived classes should implement this method to notify the user of a change of address.
Public methodSetEta
Derived classes should implement this method to display arrival (time and distance) estimates.
Public methodSetGpsInfo
Derived classes should implement this method to display GPS status information.
Public methodSetInstruction
Derived classes should implement this method to update navigation instructions displayed to the user.
Public methodSetNavigationOff
Derived classes should implement this method to disable navigation.
Public methodSetSpeed
Derived classes should implement this method to notify the user of the vehicle's current speed.
Public methodSetStatusMessage
Derived classes should implement this method to display status information to the user.
Public methodSetUpcomingTurn
Derived classes should implement this method to alert the user of an upcoming turn.
Top
Events
  NameDescription
Public eventRequestDirections
Derived classes should fire this event when the user requests directions.
Top
Remarks
Implemented by DefaultNavigationStatus.
See Also