aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvshcherb <victor.shcherb@gmail.com>2019-10-21 10:06:00 +0200
committerGitHub <noreply@github.com>2019-10-21 10:06:00 +0200
commitb4d2dc0e3b77573ff3c185f725b174b0eabf3899 (patch)
treef5558d131e2b3027ec94c88eab7d3499434f4200
parent94ad0d5b2b1fc009d7788cfe05b2c5c10630cd39 (diff)
parentdf00cb66b5b0c6d39c232e5ceb9503ba4f5f70f6 (diff)
downloadOsmand-b4d2dc0e3b77573ff3c185f725b174b0eabf3899.tar.gz
Merge pull request #7687 from osmandapp/issue_7599
lower tertiary roads value in speak_priority #7599
-rw-r--r--OsmAnd-java/src/main/java/net/osmand/router/RouteResultPreparation.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/OsmAnd-java/src/main/java/net/osmand/router/RouteResultPreparation.java b/OsmAnd-java/src/main/java/net/osmand/router/RouteResultPreparation.java
index a729fc3345..a26220193c 100644
--- a/OsmAnd-java/src/main/java/net/osmand/router/RouteResultPreparation.java
+++ b/OsmAnd-java/src/main/java/net/osmand/router/RouteResultPreparation.java
@@ -1026,7 +1026,7 @@ public class RouteResultPreparation {
return MAX_SPEAK_PRIORITY;
}
if (highway.endsWith("_link") || highway.endsWith("unclassified") || highway.endsWith("road")
- || highway.endsWith("living_street") || highway.endsWith("residential") ) {
+ || highway.endsWith("living_street") || highway.endsWith("residential") || highway.endsWith("tertiary") ) {
return 1;
}
return 0;