Changeset 33285 in osm for applications/viewer/jmapviewer/src/org/openstreetmap
- Timestamp:
- 2017-05-01T16:51:11+02:00 (8 years ago)
- Location:
- applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/Projected.java
r33207 r33285 16 16 private transient Point2D.Double data; 17 17 18 /** 19 * Constructs a new {@code Projected}. 20 * @param east easting 21 * @param north northing 22 */ 18 23 public Projected(double east, double north) { 19 24 data = new Point2D.Double(east, north); -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/TileRange.java
r33208 r33285 15 15 } 16 16 17 /** 18 * Constructs a new {@code TileRange}. 19 * @param t1 first tile 20 * @param t2 second tile 21 * @param zoom zoom level 22 */ 17 23 public TileRange(TileXY t1, TileXY t2, int zoom) { 18 24 minX = (int) Math.floor(Math.min(t1.getX(), t2.getX())); … … 23 29 } 24 30 31 /** 32 * Constructs a new {@code TileRange}. 33 * @param r existing tile range to copy 34 */ 25 35 public TileRange(TileRange r) { 26 36 minX = r.minX; -
applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/interfaces/IProjected.java
r33207 r33285 9 9 */ 10 10 public interface IProjected { 11 /** 12 * Returns easting. 13 * @return easting 14 */ 11 15 double getEast(); 16 17 /** 18 * Returns northing. 19 * @return northing 20 */ 12 21 double getNorth(); 13 22 } 14
Note:
See TracChangeset
for help on using the changeset viewer.