Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 1123
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Struct _cef_geoposition_t

   in cef_types.h

struct _cef_geoposition_t

Structure representing geoposition information. The properties of this structure correspond to those of the JavaScript Position object although their types may differ.


Field Summary
 double accuracy
          Accuracy of horizontal position in meters.
 double altitude
          Altitude in meters (above WGS84 datum).
 double altitude_accuracy
          Accuracy of altitude in meters.
 cef_geoposition_error_code_t error_code
          Error code, see enum above.
 cef_string_t error_message
          Human-readable error message.
 double heading
          Heading in decimal degrees clockwise from true north.
 double latitude
          Latitude in decimal degrees north (WGS84 coordinate frame).
 double longitude
          Longitude in decimal degrees west (WGS84 coordinate frame).
 double speed
          Horizontal component of device velocity in meters per second.
 cef_time_t timestamp
          Time of position measurement in miliseconds since Epoch in UTC time.
 

Field Detail

accuracy

public double accuracy;
Accuracy of horizontal position in meters.

altitude

public double altitude;
Altitude in meters (above WGS84 datum).

altitude_accuracy

public double altitude_accuracy;
Accuracy of altitude in meters.

error_code

public cef_geoposition_error_code_t error_code;
Error code, see enum above.

error_message

public cef_string_t error_message;
Human-readable error message.

heading

public double heading;
Heading in decimal degrees clockwise from true north.

latitude

public double latitude;
Latitude in decimal degrees north (WGS84 coordinate frame).

longitude

public double longitude;
Longitude in decimal degrees west (WGS84 coordinate frame).

speed

public double speed;
Horizontal component of device velocity in meters per second.

timestamp

public cef_time_t timestamp;
Time of position measurement in miliseconds since Epoch in UTC time. This is taken from the host computer's system clock.

 Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 1123
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt