Changeset 18291 in osm for applications/editors
- Timestamp:
- 2009-10-27T10:45:25+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/openstreetbugs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/openstreetbugs/build.xml
r18071 r18291 26 26 <attribute name="Plugin-Description" value="Imports issues from OpenStreetBugs"/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/OpenStreetBugs"/> 28 <attribute name="Plugin-Mainversion" value="2 264"/>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/openstreetbugs/src/org/openstreetmap/josm/plugins/osb/api/DownloadAction.java
r17520 r18291 57 57 // add query params to the uri 58 58 StringBuilder sb = new StringBuilder(uri) 59 .append("?b=").append(bounds. min.lat())60 .append("&t=").append(bounds. max.lat())61 .append("&l=").append(bounds. min.lon())62 .append("&r=").append(bounds. max.lon());59 .append("?b=").append(bounds.getMin().lat()) 60 .append("&t=").append(bounds.getMax().lat()) 61 .append("&l=").append(bounds.getMin().lon()) 62 .append("&r=").append(bounds.getMax().lon()); 63 63 uri = sb.toString(); 64 64
Note:
See TracChangeset
for help on using the changeset viewer.