![]() |
Gray C++ Libraries
0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
|
#include <cGeoLocation.h>
Public Attributes | |
double | m_latitude |
double | m_longitude |
The latitude as a decimal number(always returned) More... | |
double | m_accuracy |
The longitude as a decimal number(always returned) More... | |
double | m_altitude |
The accuracy of position(always returned) More... | |
double | m_altitudeAccuracy |
The altitude in meters above the mean sea level(returned if available) More... | |
double | m_heading |
The altitude accuracy of position(returned if available) More... | |
double | m_speed |
The heading as degrees clockwise from North(returned if available) More... | |
cTimeDouble | m_timestamp |
The speed in meters per second(returned if available) More... | |
My location on earth. Used to represent the data obtained from the browser javascript / DOM object navigator.geolocation. https://www.w3schools.com/html/html5_geolocation.asp E.g. navigator.geolocation.getCurrentPosition(showPosition,showError) function showPosition(position) { position.coords.latitude } similar to Xcode CLLocation https://developer.apple.com/reference/corelocation/cllocation
double GrayLib::cGeoLocation::m_accuracy |
The longitude as a decimal number(always returned)
double GrayLib::cGeoLocation::m_altitude |
The accuracy of position(always returned)
double GrayLib::cGeoLocation::m_altitudeAccuracy |
The altitude in meters above the mean sea level(returned if available)
double GrayLib::cGeoLocation::m_heading |
The altitude accuracy of position(returned if available)
double GrayLib::cGeoLocation::m_latitude |
double GrayLib::cGeoLocation::m_longitude |
The latitude as a decimal number(always returned)
double GrayLib::cGeoLocation::m_speed |
The heading as degrees clockwise from North(returned if available)
cTimeDouble GrayLib::cGeoLocation::m_timestamp |
The speed in meters per second(returned if available)