Changeset 8637 in josm for trunk/src/org/openstreetmap/josm/data/imagery/WMTSTileSource.java
- Timestamp:
- 2015-08-02T23:08:56+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/WMTSTileSource.java
r8635 r8637 539 539 540 540 @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) { 547 547 TileMatrix matrix = getTileMatrix(zoom); 548 548 if (matrix == null) {
Note:
See TracChangeset
for help on using the changeset viewer.
