Ignore:
Timestamp:
2015-08-02T23:08:56+02:00 (9 years ago)
Author:
Don-vip
Message:

update to latest JMapViewer

File:
1 edited

Legend:

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

    r8626 r8637  
    242242
    243243    @Override
    244     public ICoordinate XYToLatLon(Point point, int zoom) {
    245         return XYToLatLon(point.x, point.y, zoom);
    246     }
    247 
    248     @Override
    249     public ICoordinate XYToLatLon(int x, int y, int zoom) {
     244    public ICoordinate xyToLatLon(Point point, int zoom) {
     245        return xyToLatLon(point.x, point.y, zoom);
     246    }
     247
     248    @Override
     249    public ICoordinate xyToLatLon(int x, int y, int zoom) {
    250250        double scale = getDegreesPerTile(zoom) / getTileSize();
    251251        Projection proj = Main.getProjection();
Note: See TracChangeset for help on using the changeset viewer.