diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp index 2f293d7af3..bbbf20b4bc 100644 --- a/indexer/feature_visibility.cpp +++ b/indexer/feature_visibility.cpp @@ -233,6 +233,7 @@ namespace static const uint32_t psurface = classif().GetTypeByPath({ "psurface" }); static const uint32_t wheelchair = classif().GetTypeByPath({ "wheelchair" }); static const uint32_t sponsored = classif().GetTypeByPath({ "sponsored" }); + static const uint32_t cuisine = classif().GetTypeByPath({ "cuisine" }); // Reserved for custom event processing, i.e. fc2018. //static const uint32_t event = classif().GetTypeByPath({ "event" }); static const uint32_t internet = classif().GetTypeByPath({ "internet_access" }); @@ -258,6 +259,9 @@ namespace if (wheelchair == type && typeLength == 2) return true; + if (cuisine == type) + return true; + if (g != GEOM_LINE) { if (sponsored == type || internet == type)