summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/geometry/ILatLng.java
blob: afd22e5ddb80c1ad5fe4fd923c5d6487bd62455c (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();
}