Skip to content
Snippets Groups Projects
Commit 1c92061a authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Ein Pfad wird nun auch als Straßenname anerkannt

parent 13c73d04
No related branches found
No related tags found
No related merge requests found
......@@ -159,6 +159,8 @@ function getRoad(address) {
road = address["road"];
} else if (typeof address["pedestrian"] !== 'undefined') {
road = address["pedestrian"];
} else if (typeof address["path"] !== 'undefined' ) {
road = address["path"];
} else if (typeof address["footway"] !== 'undefined') {
road = address["footway"];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment