Since: API level 6
public class

LatLongPoint

extends Object
implements Parcelable Serializable
java.lang.Object
   ↳ com.samsung.android.knox.location.LatLongPoint

Class Overview

The class defines a latlong point object. The latitude range of LatLongPoint object should be between -90 to +90 and longitude between -180 to +180.

Since
API level 6
MDM 4.0

Summary

[Expand]
Inherited Constants
From interface android.os.Parcelable
Fields
public double latitude Latitude coordinate of a geographical position.
public double longitude Longitude coordinate of a geographical position.
Public Constructors
LatLongPoint(double latitude, double longitude)
Constructor to create an object of LatLongPoint.
[Expand]
Inherited Methods
From class java.lang.Object
From interface android.os.Parcelable

Fields

public double latitude

Since: API level 6

Latitude coordinate of a geographical position.

Since
API level 6
MDM 4.0

public double longitude

Since: API level 6

Longitude coordinate of a geographical position.

Since
API level 6
MDM 4.0

Public Constructors

public LatLongPoint (double latitude, double longitude)

Since: API level 6

Constructor to create an object of LatLongPoint.

Parameters
latitude latitude of any geographical point which has to be between -90 to +90
longitude longitude of any geographical point which has to be between -180 to +180
Since
API level 6
MDM 4.0