Merge pull request #7687 from osmandapp/issue_7599
lower tertiary roads value in speak_priority #7599
This commit is contained in:
commit
b4d2dc0e3b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue