Changeset 18293 in osm for applications/editors/josm/plugins/osmarender/src/org/openstreetmap
- Timestamp:
- 2009-10-27T10:49:56+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.