Click or drag to resize

GpsAutomaton Class

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
A simple GPS class that takes a set of directions and advances a point when Advance() is called
Inheritance Hierarchy
SystemObject
  Telogis.GeoBase.NavigationGpsAutomaton

Namespace:  Telogis.GeoBase.Navigation
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public class GpsAutomaton : IGps

The GpsAutomaton type exposes the following members.

Constructors
  NameDescription
Public methodGpsAutomaton(Directions)
Create a new GpsAutomaton with the given directions
Public methodGpsAutomaton(Directions, DateTime)
Create a new GpsAutomaton with the given directions and time.
Top
Properties
  NameDescription
Public propertyArrived
Get whether or not the GpsAutomaton has arrived at its destination.
Public propertyHeading
Get the current heading, in degrees.
Public propertyLocation
Gets the current position.
Public propertyPosition
The current position of the GPS Automaton.
Public propertyPoweredUp
Implemented as part of the IGps interface. This method always returns true.
Public propertySpeed
Gets the current speed.
Top
Methods
  NameDescription
Public methodAdvance
Advance down the route by a certain number of seconds.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodPowerDown
Implemented as a part of the IGps interface. This method is a stub that does nothing.
Public methodPowerUp
Implemented as part of the IGps interface. This method is a stub that does nothing.
Public methodSetNewRoute
Set a new route, clearing the old route.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Events
  NameDescription
Public eventArrive
This event handler will be called when the GpsAutomaton arrives at its destination.
Public eventGPSException
Implemented as part of the IGPS interface (to be called when the GPS experiences a fatal exception), this should not occur for the GPS Automaton.
Public eventUpdate
Called when the Advance(Double) method is called to update the current position.
Top
See Also