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

update to latest JMapViewer

File:
1 edited

Legend:

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

    r8635 r8637  
    539539
    540540    @Override
    541     public Coordinate XYToLatLon(Point point, int zoom) {
    542         return XYToLatLon(point.x, point.y, zoom);
    543     }
    544 
    545     @Override
    546     public Coordinate XYToLatLon(int x, int y, int zoom) {
     541    public Coordinate xyToLatLon(Point point, int zoom) {
     542        return xyToLatLon(point.x, point.y, zoom);
     543    }
     544
     545    @Override
     546    public Coordinate xyToLatLon(int x, int y, int zoom) {
    547547        TileMatrix matrix = getTileMatrix(zoom);
    548548        if (matrix == null) {
Note: See TracChangeset for help on using the changeset viewer.