GpsDriver
public
class
GpsDriver
extends Object
java.lang.Object | |
↳ | com.google.android.things.userdriver.GpsDriver |
Driver to interface with user-connected GPS sensors.
To install a GPS driver, create a GpsDriver object then call
registerGpsDriver(GpsDriver)
to register it. When a new GPS
reading is available, call reportLocation(Location)
to report it to the framework.
Summary
Public constructors | |
---|---|
GpsDriver()
Construct a |
Public methods | |
---|---|
void
|
reportLocation(Location location)
Report the location to the framework. |
Inherited methods | |
---|---|
From
class
java.lang.Object
|
Public constructors
GpsDriver
</div>
GpsDriver ()
Construct a GpsDriver
object.
</div>
Public methods
reportLocation
</div>
void reportLocation (Location location)
Report the location to the framework.
Parameters | |
---|---|
location |
Location :
A Location
object. This object must contain accuracy, timestamp, latitude, and longitude attributes.
|
</div>
</div>