Changeset 25934 in osm
- Timestamp:
- 2011-05-02T20:43:55+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/ImportImagePlugin
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/ImportImagePlugin/build.xml
r25192 r25934 33 33 <property name="commit.message" value="use consistent plugin name (don't mix up the words)" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value=" 3835" />35 <property name="plugin.main.version" value="4065" /> 36 36 37 37 -
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.