forked from organicmaps/organicmaps-tmp
[search] Fixed "attraction" ranking.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
cefa32853a
commit
a0c1ec368d
1 changed files with 12 additions and 1 deletions
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue