Changeset 8772 in josm for trunk/src/org/openstreetmap


Ignore:
Timestamp:
2015-09-21T02:21:30+02:00 (9 years ago)
Author:
Don-vip
Message:

remove deprecated code from jmapviewer, deprecate plugin imagerycache (feature now in core)

Location:
trunk/src/org/openstreetmap/josm
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/TemplatedWMSTileSource.java

    r8704 r8772  
    311311    }
    312312
    313     @Override
    314     public double lonToTileX(double lon, int zoom) {
    315         throw new UnsupportedOperationException("Not implemented");
    316     }
    317 
    318     @Override
    319     public double tileXToLon(int x, int zoom) {
    320         throw new UnsupportedOperationException("Not implemented");
    321     }
    322 
    323     @Override
    324     public double tileYToLat(int y, int zoom) {
    325         throw new UnsupportedOperationException("Not implemented");
    326     }
    327 
    328     @Override
    329     public double getDistance(double lat1, double lon1, double lat2, double lon2) {
    330         throw new UnsupportedOperationException("Not implemented");
    331     }
    332 
    333     @Override
    334     public int lonToX(double lon, int zoom) {
    335         throw new UnsupportedOperationException("Not implemented");
    336     }
    337 
    338     @Override
    339     public int latToY(double lat, int zoom) {
    340         throw new UnsupportedOperationException("Not implemented");
    341     }
    342 
    343     @Override
    344     public double XToLon(int x, int zoom) {
    345         throw new UnsupportedOperationException("Not implemented");
    346     }
    347 
    348     @Override
    349     public double YToLat(int y, int zoom) {
    350         throw new UnsupportedOperationException("Not implemented");
    351     }
    352 
    353     @Override
    354     public double latToTileY(double lat, int zoom) {
    355         throw new UnsupportedOperationException("Not implemented");
    356     }
    357 
    358313    /**
    359314     * Checks if url is acceptable by this Tile Source
  • trunk/src/org/openstreetmap/josm/data/imagery/WMTSTileSource.java

    r8764 r8772  
    495495
    496496    @Override
    497     public int lonToX(double lon, int zoom) {
    498         throw new UnsupportedOperationException("Not implemented");
    499     }
    500 
    501     @Override
    502     public int latToY(double lat, int zoom) {
    503         throw new UnsupportedOperationException("Not implemented");
    504     }
    505 
    506     @Override
    507     public double XToLon(int x, int zoom) {
    508         throw new UnsupportedOperationException("Not implemented");
    509     }
    510 
    511     @Override
    512     public double YToLat(int y, int zoom) {
    513         throw new UnsupportedOperationException("Not implemented");
    514     }
    515 
    516     @Override
    517     public double latToTileY(double lat, int zoom) {
    518         throw new UnsupportedOperationException("Not implemented");
    519     }
    520 
    521     @Override
    522497    public ICoordinate tileXYToLatLon(Tile tile) {
    523498        return tileXYToLatLon(tile.getXtile(), tile.getYtile(), tile.getZoom());
     
    622597
    623598    @Override
    624     public double lonToTileX(double lon, int zoom) {
    625         throw new UnsupportedOperationException("Not implemented");
    626     }
    627 
    628     @Override
    629     public double tileXToLon(int x, int zoom) {
    630         throw new UnsupportedOperationException("Not implemented");
    631     }
    632 
    633     @Override
    634     public double tileYToLat(int y, int zoom) {
    635         throw new UnsupportedOperationException("Not implemented");
    636     }
    637 
    638     @Override
    639599    public Map<String, String> getHeaders() {
    640600        return headers;
     
    653613        return getTileUrl(zoom, tilex, tiley);
    654614    }
    655 
    656615
    657616    /**
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r8745 r8772  
    128128            new DeprecatedPlugin("notes", IN_CORE),
    129129            new DeprecatedPlugin("mirrored_download", IN_CORE),
     130            new DeprecatedPlugin("imagerycache", IN_CORE),
    130131        });
    131132    }
Note: See TracChangeset for help on using the changeset viewer.