Changeset 18962 in osm for applications/editors/josm/plugins/routing/src
- Timestamp:
- 2009-12-05T18:54:28+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/RoutingLayer.java
r18597 r18962 135 135 double minDist = 0; 136 136 for (Way w : dataLayer.data.getWays()) { 137 if (w.isDeleted() || w.i ncomplete|| w.get("highway")==null) continue;137 if (w.isDeleted() || w.isIncomplete() || w.get("highway")==null) continue; 138 138 for (Node n : w.getNodes()) { 139 if (n.isDeleted() || n.i ncomplete) continue;139 if (n.isDeleted() || n.isIncomplete()) continue; 140 140 141 141 Point P = Main.map.mapView.getPoint(n);
Note:
See TracChangeset
for help on using the changeset viewer.