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

/**
 * Describes a projection in Mercator meters.
 */
public interface IProjectedMeters {

  /**
   * Get the north projection, in meters.
   *
   * @return the projected meters in north direction
   */
  double getNorthing();

  /**
   * Get the east projection, in meters.
   *
   * @return the projected meters in east direction
   */
  double getEasting();

}