Changeset 278 in josm for src/org/openstreetmap/josm


Ignore:
Timestamp:
2007-07-06T00:42:37+02:00 (17 years ago)
Author:
imi
Message:
  • fixed Projection#allProjection to not beeing final, so plugins can add new projections
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/data/projection/Projection.java

    r116 r278  
    1212public interface Projection {
    1313
    14         public static double MAX_LAT = 85.05112877980659; // Mercator squares the world
    15         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;
    1616        public static final double MAX_SERVER_PRECISION = 1e12;
    1717
     
    1919         * List of all available Projections.
    2020         */
    21         public static final Projection[] allProjections = new Projection[]{
     21        public static Projection[] allProjections = new Projection[]{
    2222                new Epsg4326(),
    2323                new Mercator()
Note: See TracChangeset for help on using the changeset viewer.