Changeset 34255 in osm for applications/editors


Ignore:
Timestamp:
2018-06-05T13:39:14+02:00 (6 years ago)
Author:
biswesh
Message:

Changes to bicycle route and mtb

Location:
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/actions/EdgeSelectionAction.java

    r34249 r34255  
    108108
    109109        private Boolean isWaySuitableForMode(Way way, String modeOfTravel) {
    110                 if ("bus".equals(modeOfTravel))
     110                if ("bus".equals(modeOfTravel) )
    111111                        return RouteUtils.isWaySuitableForBuses(way);
    112112
     
    201201                        if (initial != null) {
    202202                                modeOfTravel = getModeOfTravel(initial);
     203                                if ("mtb".equals(modeOfTravel))
     204                                        modeOfTravel = "bicycle";
    203205                                List<Way> edge = getEdgeFromWay(initial, modeOfTravel);
    204206                                for (Way way : edge) {
     
    222224                        if (edgeList.size() == 0 || modeOfTravel == null) {
    223225                                modeOfTravel = getModeOfTravel(initial);
     226                                if ("mtb".equals(modeOfTravel))
     227                                        modeOfTravel = "bicycle";
    224228                        }
    225229
     
    258262                        if (edgeList.size() == 0 || modeOfTravel == null) {
    259263                                modeOfTravel = getModeOfTravel(initial);
     264                                if ("mtb".equals(modeOfTravel))
     265                                        modeOfTravel = "bicycle";
    260266                        }
    261267                        if (initial != null) {
  • applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/gui/PTAssistantPaintVisitor.java

    r34248 r34255  
    151151                        } else if (link.isOnewayLoopForwardPart) {
    152152                                if (way.isSelected()) {
    153                                         drawWay(way, new Color(255, 20, 147, 100));
     153                                        drawWay(way, new Color(255, 255, 0, 100));
    154154                                } else {
    155155                                        drawWay(way, new Color(255, 0, 0, 100));
  • applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/utils/RouteUtils.java

    r33728 r34255  
    269269        }
    270270
    271         return r.hasTag(TAG_ROUTE, "bicycle");
     271        return r.hasTag(TAG_ROUTE, "bicycle", "mtb");
    272272    }
    273273
Note: See TracChangeset for help on using the changeset viewer.