Module tdlight.api

Class TdApi.Location

java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.Location
Enclosing class:
TdApi

public static final class TdApi.Location extends TdApi.Object
Describes a location on planet Earth.
  • Field Details

    • latitude

      public double latitude
      Latitude of the location in degrees; as defined by the sender.
    • longitude

      public double longitude
      Longitude of the location, in degrees; as defined by the sender.
    • horizontalAccuracy

      public double horizontalAccuracy
      The estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      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 - double Latitude of the location in degrees; as defined by the sender.
      longitude - double Longitude of the location, in degrees; as defined by the sender.
      horizontalAccuracy - double The estimated horizontal accuracy of the location, in meters; as defined by the sender. 0 if unknown.
    • Location

      public Location(DataInput input) throws IOException
      Describes a location on planet Earth.
      Throws:
      IOException
  • Method Details