Changeset 278 in josm
- Timestamp:
- 2007-07-06T00:42:37+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/data/projection/Projection.java
r116 r278 12 12 public interface Projection { 13 13 14 public static double MAX_LAT = 85.05112877980659; // Mercator squares the world15 public static double MAX_LON = 180;14 public static final double MAX_LAT = 85.05112877980659; // Mercator squares the world 15 public static final double MAX_LON = 180; 16 16 public static final double MAX_SERVER_PRECISION = 1e12; 17 17 … … 19 19 * List of all available Projections. 20 20 */ 21 public static finalProjection[] allProjections = new Projection[]{21 public static Projection[] allProjections = new Projection[]{ 22 22 new Epsg4326(), 23 23 new Mercator()
Note:
See TracChangeset
for help on using the changeset viewer.