Inherits Object.
Describes a location on planet Earth.
Public Fields | |
double | latitude_ |
Latitude of the location in degrees; as defined by the sender. | |
double | longitude_ |
Longitude of the location, in degrees; as defined by the sender. | |
double | horizontal_accuracy_ |
The estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown. | |
Public Instance Methods | |
location () | |
location (double latitude_, double longitude_, double horizontal_accuracy_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -443392141 |
Identifier uniquely determining a type of the object. | |
location | ( | ) |
Describes a location on planet Earth.
location | ( | double | latitude_, |
double | longitude_, | ||
double | horizontal_accuracy_ | ||
) |
Describes a location on planet Earth.
[in] | latitude_ | Latitude of the location in degrees; as defined by the sender. |
[in] | longitude_ | Longitude of the location, in degrees; as defined by the sender. |
[in] | horizontal_accuracy_ | The estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown. |
|
finalvirtual |