summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/geometry/ILatLng.java
blob: 1af8e7cfc7656afc20b3996a44c7e0a72226f53a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.mapbox.mapboxsdk.geometry;

/**
 * Describes a latitude, longitude point.
 */
public interface ILatLng {
  double getLatitude();

  double getLongitude();

  double getAltitude();
}