Ignore:
Timestamp:
2014-12-18T22:56:22+01:00 (10 years ago)
Author:
bastik
Message:

see #josm5309 - rework cache directory structure so you don't have too many files in in one directory
New cache is implemented in TMSFileCacheTileLoader. Old cache in OsmFileCacheTileLoader should work
as before.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/AbstractOsmTileSource.java

    r30336 r30854  
    2020     * @param name Source name as displayed in GUI
    2121     * @param base_url Source URL
     22     * @param id unique id for the tile source; contains only characters that
     23     * are safe for file names; can be null
    2224     */
    23     public AbstractOsmTileSource(String name, String base_url) {
    24         super(name, base_url);
     25    public AbstractOsmTileSource(String name, String base_url, String id) {
     26        super(name, base_url, id);
    2527    }
    2628
Note: See TracChangeset for help on using the changeset viewer.