Changeset 18293 in osm for applications
- Timestamp:
- 2009-10-27T10:49:56+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/osmarender
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/osmarender/build.xml
r18061 r18293 26 26 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 27 27 <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/> 28 <attribute name="Plugin-Mainversion" value="2 166"/>28 <attribute name="Plugin-Mainversion" value="2327"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java
r18061 r18293 138 138 private void writeGenerated(Bounds b) throws IOException { 139 139 String bounds_tag = "<bounds " + 140 "minlat=\"" + b. min.lat() + "\" " +141 "maxlat=\"" + b. max.lat() + "\" " +142 "minlon=\"" + b. min.lon() + "\" " +143 "maxlon=\"" + b. max.lon() + "\" " + "/>";140 "minlat=\"" + b.getMin().lat() + "\" " + 141 "maxlat=\"" + b.getMax().lat() + "\" " + 142 "minlon=\"" + b.getMin().lon() + "\" " + 143 "maxlon=\"" + b.getMax().lon() + "\" " + "/>"; 144 144 145 145 BufferedReader reader = new BufferedReader(
Note:
See TracChangeset
for help on using the changeset viewer.