Changeset 15938 in osm for applications/editors/josm
- Timestamp:
- 2009-06-16T08:52:48+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java
r14406 r15938 65 65 for (OsmPrimitive p : new HashSet<OsmPrimitive>(backRefsV.data)) { 66 66 if (p instanceof Way) { 67 backRefsV.data.addAll(((Way) p).nodes); 67 for (Node n : ((Way) p).nodes) { 68 if (n.coor.isWithin(b)) 69 backRefsV.data.add(n); 70 } 68 71 } 69 72 } … … 79 82 w.writeContent(fromDataSet); 80 83 w.footer(); 84 w.close(); 81 85 82 86 // get the exec line
Note:
See TracChangeset
for help on using the changeset viewer.