summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/geometry/ILatLng.java
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/geometry/ILatLng.java')
-rw-r--r--platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/geometry/ILatLng.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/geometry/ILatLng.java b/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/geometry/ILatLng.java
deleted file mode 100644
index 07df87af3a..0000000000
--- a/platform/android/MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/geometry/ILatLng.java
+++ /dev/null
@@ -1,28 +0,0 @@
-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();
-}