Ignore:
Timestamp:
2009-10-27T10:49:56+01:00 (15 years ago)
Author:
guggis
Message:

Updated to JOSM r2327

Location:
applications/editors/josm/plugins/osmarender
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/osmarender/build.xml

    r18061 r18293  
    2626                <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    2727                <attribute name="Plugin-Description" value="Launches FireFox to display the current visible screen as a nice SVG image."/>
    28                 <attribute name="Plugin-Mainversion" value="2166"/>
     28                <attribute name="Plugin-Mainversion" value="2327"/>
    2929                <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    3030            </manifest>
  • applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java

    r18061 r18293  
    138138    private void writeGenerated(Bounds b) throws IOException {
    139139        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() + "\" " + "/>";
    144144
    145145        BufferedReader reader = new BufferedReader(
Note: See TracChangeset for help on using the changeset viewer.