[core] Prioritize line features selection over area ones

Needed-for: #1847

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin 2022-01-14 10:28:32 +03:00 committed by Alexander Borsuk
parent 6b52f7775c
commit cf85cb852f

View file

@ -1916,7 +1916,7 @@ FeatureID Framework::GetFeatureAtPoint(m2::PointD const & mercator,
}
}, mercator);
return fullMatch.IsValid() ? fullMatch : (poi.IsValid() ? poi : (area.IsValid() ? area : line));
return fullMatch.IsValid() ? fullMatch : (poi.IsValid() ? poi : (line.IsValid() ? line : area));
}
osm::MapObject Framework::GetMapObjectByID(FeatureID const & fid) const