Ignore:
Timestamp:
2006-04-03T22:25:02+02:00 (18 years ago)
Author:
imi
Message:
  • fixed bug in osm import (now reject id=0)
  • added WMS server layer (not finished)
  • added save state for dialogs
Location:
src/org/openstreetmap/josm/data/projection
Files:
1 added
1 deleted
2 edited

Legend:

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

    r73 r79  
    3131                return "Mercator";
    3232        }
     33
     34    public String getCacheDirectoryName() {
     35        return "mercator";
     36    }
    3337}
  • src/org/openstreetmap/josm/data/projection/Projection.java

    r78 r79  
    2020         */
    2121        public static final Projection[] allProjections = new Projection[]{
    22                 new Epsg4263(),
     22                new Epsg4326(),
    2323                new Mercator()
    2424        };
     
    4242         */
    4343        String toString();
     44   
     45    /**
     46     * Get a filename compatible string (for the cache directory)
     47     */
     48    String getCacheDirectoryName();
    4449}
Note: See TracChangeset for help on using the changeset viewer.