Changeset 16409 in osm for applications/editors/josm/plugins/surveyor
- Timestamp:
- 2009-07-09T14:36:03+02:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/surveyor
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/build.xml
r16290 r16409 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="17 22"/>39 <attribute name="Plugin-Mainversion" value="1755"/> 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/AutoSaveEditLayerTimerTask.java
r14406 r16409 39 39 @Override 40 40 public void run() { 41 if(Main.map == null || Main.map.mapView == null || Main.map.mapView. editLayer == null) {41 if(Main.map == null || Main.map.mapView == null || Main.map.mapView.getEditLayer() == null) { 42 42 return; 43 43 } 44 OsmDataLayer layer = Main.map.mapView. editLayer;44 OsmDataLayer layer = Main.map.mapView.getEditLayer(); 45 45 try { 46 46 DataSet dataset = layer.data; -
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/action/SetNodeAction.java
r13497 r16409 70 70 node.put("created_by", "JOSM-surveyor-plugin"); 71 71 synchronized(LiveGpsLock.class) { 72 Main.ma in.editLayer().data.nodes.add(node);72 Main.map.mapView.getEditLayer().data.nodes.add(node); 73 73 Main.ds.setSelected(node); 74 74 }
Note:
See TracChangeset
for help on using the changeset viewer.