forked from organicmaps/organicmaps
[search] Match highways from different classes for removig duplicating linear search results.
This commit is contained in:
parent
bfeb85425b
commit
980d407d50
1 changed files with 10 additions and 1 deletions
|
@ -146,7 +146,16 @@ bool RankerResult::GetCountryId(storage::CountryInfoGetter const & infoGetter, u
|
|||
|
||||
bool RankerResult::IsEqualCommon(RankerResult const & r) const
|
||||
{
|
||||
return m_geomType == r.m_geomType && GetBestType() == r.GetBestType() && m_str == r.m_str;
|
||||
if ((m_geomType != r.m_geomType) || (m_str != r.m_str))
|
||||
return false;
|
||||
|
||||
auto const bestType = GetBestType();
|
||||
auto const rBestType = r.GetBestType();
|
||||
if (bestType == rBestType)
|
||||
return true;
|
||||
|
||||
auto const & checker = ftypes::IsWayChecker::Instance();
|
||||
return checker(bestType) && checker(rBestType);
|
||||
}
|
||||
|
||||
bool RankerResult::IsStreet() const { return ftypes::IsStreetOrSuburbChecker::Instance()(m_types); }
|
||||
|
|
Loading…
Add table
Reference in a new issue