From c02a75f9cef7cf6ca334ef1c3498bd83ea69f815 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Fri, 16 Mar 2018 15:31:58 +0300 Subject: [PATCH] Making routes along piers. That means along tag man_made:pier. --- indexer/ftypes_matcher.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/indexer/ftypes_matcher.cpp b/indexer/ftypes_matcher.cpp index 6eabbb5225..adb270641b 100644 --- a/indexer/ftypes_matcher.cpp +++ b/indexer/ftypes_matcher.cpp @@ -49,6 +49,7 @@ public: m_map[c.GetTypeByPath({"highway", "service"})] = ftypes::HighwayClass::Service; m_map[c.GetTypeByPath({"highway", "track"})] = ftypes::HighwayClass::Service; + m_map[c.GetTypeByPath({"man_made", "pier"})] = ftypes::HighwayClass::Service; m_map[c.GetTypeByPath({"highway", "pedestrian"})] = ftypes::HighwayClass::Pedestrian; m_map[c.GetTypeByPath({"highway", "footway"})] = ftypes::HighwayClass::Pedestrian;