Changeset 18297 in osm for applications/editors/josm
- Timestamp:
- 2009-10-27T11:02:28+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/utilsplugin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin/build.xml
r17707 r18297 25 25 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 26 26 <attribute name="Plugin-Description" value="Several utilities that make your life easier: e.g. simplify way, join areas, jump to position."/> 27 <attribute name="Plugin-Mainversion" value="2 166"/>27 <attribute name="Plugin-Mainversion" value="2327"/> 28 28 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 29 29 </manifest> -
applications/editors/josm/plugins/utilsplugin/src/UtilsPlugin/JumpToAction.java
r17436 r18297 122 122 Bounds b = OsmUrlToBounds.parse(url.getText()); 123 123 if (b != null) { 124 lat.setText(Double.toString((b. min.lat() + b.max.lat())/2));125 lon.setText(Double.toString((b. min.lon() + b.max.lon())/2));124 lat.setText(Double.toString((b.getMin().lat() + b.getMax().lat())/2)); 125 lon.setText(Double.toString((b.getMin().lon() + b.getMax().lon())/2)); 126 126 127 127 int zoomLvl = 16;
Note:
See TracChangeset
for help on using the changeset viewer.