From 1f8ad3f8a5d101e6f5eb7062fc6d395a2f1c5e63 Mon Sep 17 00:00:00 2001 From: Victor Shcherb Date: Sun, 7 Oct 2012 13:36:30 +0200 Subject: [PATCH] Adjust keep left voice --- .../src/net/osmand/router/BinaryRoutePlanner.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DataExtractionOSM/src/net/osmand/router/BinaryRoutePlanner.java b/DataExtractionOSM/src/net/osmand/router/BinaryRoutePlanner.java index 959fc522b9..b26074c56d 100644 --- a/DataExtractionOSM/src/net/osmand/router/BinaryRoutePlanner.java +++ b/DataExtractionOSM/src/net/osmand/router/BinaryRoutePlanner.java @@ -982,7 +982,8 @@ public class BinaryRoutePlanner { || highway.endsWith("path")) { return MAX_SPEAK_PRIORITY; } - if (highway.endsWith("_link") || highway.endsWith("unclassified") || highway.endsWith("road") ) { + if (highway.endsWith("_link") || highway.endsWith("unclassified") || highway.endsWith("road") + || highway.endsWith("living_street") || highway.endsWith("residential") ) { return 1; } return 0;