Package org.drinkless.tdlib
Class TdApi.Location
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Location
- Enclosing class:
- TdApi
Describes a location on planet Earth.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.doubleThe estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown.doubleLatitude of the location in degrees; as defined by the sender.doubleLongitude of the location, in degrees; as defined by the sender. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
latitude
public double latitudeLatitude of the location in degrees; as defined by the sender. -
longitude
public double longitudeLongitude of the location, in degrees; as defined by the sender. -
horizontalAccuracy
public double horizontalAccuracyThe estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
Location
public Location()Describes a location on planet Earth. -
Location
public Location(double latitude, double longitude, double horizontalAccuracy) Describes a location on planet Earth.- Parameters:
latitude- Latitude of the location in degrees; as defined by the sender.longitude- Longitude of the location, in degrees; as defined by the sender.horizontalAccuracy- The estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-