Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
Merge pull request #370 from vreixo/issue357b
Browse files Browse the repository at this point in the history
Fix #357 - Replaced osm:node with sidewalk, which is the desirable resul...
  • Loading branch information
barbeau committed Aug 29, 2014
2 parents c79ee3e + 3277c85 commit 6104ca9
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,8 @@ public static String getLocalizedStreetName(String streetName, Resources resourc
return resources.getString(R.string.street_type_track);
} else if (streetName.equals("sidewalk")) {
return resources.getString(R.string.street_type_sidewalk);
} else if (streetName.startsWith("osm:node:")) {
return resources.getString(R.string.street_type_sidewalk);
} else if (streetName.equals("steps")) {
return resources.getString(R.string.street_type_steps);
} else {
Expand Down

0 comments on commit 6104ca9

Please sign in to comment.