Changeset 21867 in osm for applications/editors
- Timestamp:
- 2010-06-21T18:52:01+02:00 (15 years ago)
- Location:
- applications/editors/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/public_transport/src/public_transport/RoutePatternAction.java
r20896 r21867 576 576 /*JComboBox*/ comboBox = new JComboBox(); 577 577 comboBox.addItem("bus"); 578 comboBox.addItem("trolleybus"); 578 579 comboBox.addItem("tram"); 579 580 comboBox.addItem("light_rail"); … … 1773 1774 stopValue = "bus_stop"; 1774 1775 } 1776 else if ("trolleybus".equals(currentRoute.get("route"))) 1777 { 1778 stopKey = "highway"; 1779 stopValue = "bus_stop"; 1780 } 1775 1781 else if ("tram".equals(currentRoute.get("route"))) 1776 1782 { … … 1863 1869 String routeVal = currentRel.get("route"); 1864 1870 if ("bus".equals(routeVal)) 1871 relRefs.add(new RouteReference(currentRel)); 1872 else if ("trolleybus".equals(routeVal)) 1865 1873 relRefs.add(new RouteReference(currentRel)); 1866 1874 else if ("tram".equals(routeVal))
Note:
See TracChangeset
for help on using the changeset viewer.