Changeset 18962 in osm for applications/editors/josm/plugins/routing
- Timestamp:
- 2009-12-05T18:54:28+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/routing
- Files:
-
- 2 edited
-
build.xml (modified) (1 diff)
-
src/com/innovant/josm/plugin/routing/RoutingLayer.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routing/build.xml
r18597 r18962 44 44 <attribute name="Plugin-Description" value="Provides routing capabilities."/> 45 45 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Routing"/> 46 <attribute name="Plugin-Mainversion" value="2 450"/>46 <attribute name="Plugin-Mainversion" value="2578"/> 47 47 <attribute name="Plugin-Stage" value="50"/> 48 48 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> -
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.incomplete || 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.incomplete) 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.
