Changeset 32132 in osm for applications/editors
- Timestamp:
- 2016-03-28T19:22:53+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/pointInfo
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pointInfo/README.md
r30373 r32132 34 34 * [![](https://raw.githubusercontent.com/mkyral/josm-pointInfo/master/images/dialogs/create-addr.png)] Create an address point on position where was clicked 35 35 * [![](https://raw.githubusercontent.com/mkyral/josm-pointInfo/master/images/dialogs/create-addr-ruian.png)] Create an address point on position defined in RUIAN 36 * [![](https://raw.githubusercontent.com/mkyral/josm-pointInfo/master/images/dialogs/create-bug-report.png)] Report an issue with building 36 37 37 38 --- -
applications/editors/josm/plugins/pointInfo/build.xml
r31926 r32132 3 3 4 4 <!-- enter the SVN commit message --> 5 <property name="commit.message" value="PointInfo: can load at runtime."/>5 <property name="commit.message" value="PointInfo: Fix breakage caused by API cleaning."/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value=" 7001"/>7 <property name="plugin.main.version" value="10060"/> 8 8 9 9 <!-- plugin can load at runtime --> -
applications/editors/josm/plugins/pointInfo/src/org/openstreetmap/josm/plugins/pointinfo/ruianModule.java
r30833 r32132 707 707 JsonArray node = adresniMisto.getJsonArray("pozice"); 708 708 am.setPosition(new LatLon( 709 LatLon.roundToOsmPrecision Strict(node.getJsonNumber(1).doubleValue()),710 LatLon.roundToOsmPrecision Strict(node.getJsonNumber(0).doubleValue()))709 LatLon.roundToOsmPrecision(node.getJsonNumber(1).doubleValue()), 710 LatLon.roundToOsmPrecision(node.getJsonNumber(0).doubleValue())) 711 711 ); 712 712 } catch (Exception e) {
Note:
See TracChangeset
for help on using the changeset viewer.