[search] Fixed "attraction" ranking.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2024-01-24 13:50:12 -03:00
parent cefa32853a
commit a0c1ec368d

View file

@ -142,8 +142,19 @@ public:
}
};
class IsAttraction : public BaseTypesChecker
class IsAttraction
{
std::vector<uint32_t> m_types;
public:
bool operator() (feature::TypesHolder const & th) const
{
// Strict check (unlike in BaseTypesChecker) to avoid matching:
// - historic-memorial-plaque
// - leisure-garden-residential
return base::AnyOf(m_types, [&th](uint32_t t) { return th.Has(t); });
}
public:
IsAttraction()
{