summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/geometry/ILatLng.java
blob: 07df87af3a41f22d1e85aa0a3e42281e51a0da6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.mapbox.mapboxsdk.geometry;

/**
 * Describes a latitude, longitude, and altitude tuple.
 */
public interface ILatLng {

  /**
   * Get the latitude, in degrees.
   *
   * @return the latitude value in degrees
   */
  double getLatitude();

  /**
   * Get the longitude, in degrees.
   *
   * @return the longitude value in degrees
   */
  double getLongitude();

  /**
   * Get the altitude, in meters.
   *
   * @return the altitude value in meters
   */
  double getAltitude();
}