Changeset 18427 in osm for applications/editors/josm/plugins/surveyor
- Timestamp:
- 2009-11-02T21:12:54+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/surveyor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/build.xml
r17384 r18427 37 37 <attribute name="Plugin-Description" value="Allow adding markers/nodes on current gps positions."/> 38 38 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Surveyor"/> 39 <attribute name="Plugin-Mainversion" value="2 012"/>39 <attribute name="Plugin-Mainversion" value="2388"/> 40 40 <attribute name="Plugin-Requires" value="livegps"/> 41 41 <attribute name="Plugin-Stage" value="60"/> -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/SetNodeAction.java
r16625 r18427 70 70 node.put("created_by", "JOSM-surveyor-plugin"); 71 71 synchronized(LiveGpsLock.class) { 72 Main.map.mapView.getEditLayer().data. nodes.add(node);72 Main.map.mapView.getEditLayer().data.addPrimitive(node); 73 73 Main.main.getCurrentDataSet().setSelected(node); 74 74 }
Note:
See TracChangeset
for help on using the changeset viewer.