Skip to content

Commit

Permalink
Merge pull request #170 from HSLdevcom/footway-not-for-bikes
Browse files Browse the repository at this point in the history
Do not allow cycling on footways by default
  • Loading branch information
siren committed Oct 2, 2017
2 parents 53bc3c2 + aa1991b commit d908d22
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ public WayPropertySet getWayPropertySet() {
setProperties(props, "highway=steps", StreetTraversalPermission.PEDESTRIAN);
setProperties(props, "highway=crossing", StreetTraversalPermission.PEDESTRIAN);
setProperties(props, "highway=platform", StreetTraversalPermission.PEDESTRIAN);
setProperties(props, "highway=footway", StreetTraversalPermission.PEDESTRIAN);
setProperties(props, "public_transport=platform", StreetTraversalPermission.PEDESTRIAN);
setProperties(props, "railway=platform", StreetTraversalPermission.PEDESTRIAN);
setProperties(props, "footway=sidewalk;highway=footway",
Expand All @@ -88,8 +89,6 @@ public WayPropertySet getWayPropertySet() {
0.75, 0.75);
setProperties(props, "highway=pedestrian",
StreetTraversalPermission.PEDESTRIAN_AND_BICYCLE, 0.90, 0.90);
setProperties(props, "highway=footway", StreetTraversalPermission.PEDESTRIAN_AND_BICYCLE,
1.1, 1.1);
setProperties(props, "highway=bridleway", StreetTraversalPermission.PEDESTRIAN_AND_BICYCLE,
1.3, 1.3);

Expand Down

0 comments on commit d908d22

Please sign in to comment.