Changeset 25934 in osm for applications/editors/josm/plugins/ImportImagePlugin/src
- Timestamp:
- 2011-05-02T20:43:55+02:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ImportImagePlugin/src/org/openstreetmap/josm/plugins/ImportImagePlugin/ImageLayer.java
r23305 r25934 184 184 .getProjectionBounds(); 185 185 186 double width = projbounds.max .getX()- projbounds.min.getX();187 double height = projbounds.max .getY()- projbounds.min.getY();186 double width = projbounds.maxEast - projbounds.minEast; 187 double height = projbounds.maxNorth - projbounds.minNorth; 188 188 189 189 double ratio_x = (this.bbox.getMaxY() - this.bbox.getMinY())
Note:
See TracChangeset
for help on using the changeset viewer.