Changeset 17380 in osm for applications/editors/josm
- Timestamp:
- 2009-08-30T18:20:37+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/routes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/routes/build.xml
r16594 r17380 35 35 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 36 36 <attribute name="Plugin-Description" value="Renders routes (bus, hiking trails, bicycle routes, ..). Route types must be defined in routes.xml file in plugin directory"/> 37 <attribute name="Plugin-Mainversion" value=" 1815"/>37 <attribute name="Plugin-Mainversion" value="2012"/> 38 38 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 39 39 </manifest> -
applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/ConvertedWay.java
r16428 r17380 48 48 public ConvertedWay(BitSet routes, Way way) { 49 49 this.routes = routes; 50 nodes.addAll(way. nodes);50 nodes.addAll(way.getNodes()); 51 51 } 52 52 -
applications/editors/josm/plugins/routes/src/org/openstreetmap/josm/plugins/routes/PathBuilder.java
r16428 r17380 18 18 public void addWay(Way way, RouteDefinition route) { 19 19 20 if (way. nodes.size() >= 2) {20 if (way.getNodesCount() >= 2) { 21 21 BitSet routes = wayRoutes.get(way); 22 22 if (routes == null) {
Note:
See TracChangeset
for help on using the changeset viewer.