forked from organicmaps/organicmaps
[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:
parent
6b52f7775c
commit
cf85cb852f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue