forked from organicmaps/organicmaps
[guides on map][drape] Increase touch area for guides marks.
This commit is contained in:
parent
0d0bc3ea77
commit
9d7ebe6f67
4 changed files with 20 additions and 2 deletions
|
@ -2705,6 +2705,18 @@ m2::AnyRectD TapInfo::GetRoutingPointSearchRect(m2::PointD const & mercator, Scr
|
|||
return result;
|
||||
}
|
||||
|
||||
// static
|
||||
m2::AnyRectD TapInfo::GetGuideSearchRect(m2::PointD const & mercator, ScreenBase const & screen)
|
||||
{
|
||||
static int constexpr kGuideTouchPixelIncrease = 20;
|
||||
|
||||
m2::AnyRectD result;
|
||||
double const sizeExt = kGuideTouchPixelIncrease * VisualParams::Instance().GetVisualScale();
|
||||
double const halfSize = VisualParams::Instance().GetTouchRectRadius();
|
||||
screen.GetTouchRect(screen.GtoP(mercator), halfSize + sizeExt, result);
|
||||
return result;
|
||||
}
|
||||
|
||||
// static
|
||||
m2::AnyRectD TapInfo::GetPreciseSearchRect(m2::PointD const & mercator, double const eps)
|
||||
{
|
||||
|
|
|
@ -67,6 +67,7 @@ struct TapInfo
|
|||
static m2::AnyRectD GetDefaultSearchRect(m2::PointD const & mercator, ScreenBase const & screen);
|
||||
static m2::AnyRectD GetBookmarkSearchRect(m2::PointD const & mercator, ScreenBase const & screen);
|
||||
static m2::AnyRectD GetRoutingPointSearchRect(m2::PointD const & mercator, ScreenBase const & screen);
|
||||
static m2::AnyRectD GetGuideSearchRect(m2::PointD const & mercator, ScreenBase const & screen);
|
||||
static m2::AnyRectD GetPreciseSearchRect(m2::PointD const & mercator, double const eps);
|
||||
};
|
||||
|
||||
|
|
|
@ -2740,10 +2740,12 @@ UserMark const * BookmarkManager::FindNearestUserMark(TTouchRectHolder const & h
|
|||
BestUserMarkFinder finder(holder, findOnlyVisible, this);
|
||||
auto hasFound = finder(UserMark::Type::ROUTING) ||
|
||||
finder(UserMark::Type::ROAD_WARNING) ||
|
||||
finder(UserMark::Type::GUIDE) ||
|
||||
finder(UserMark::Type::GUIDE_CLUSTER) ||
|
||||
finder(UserMark::Type::SEARCH) ||
|
||||
finder(UserMark::Type::API);
|
||||
|
||||
hasFound = finder(UserMark::Type::GUIDE) || hasFound;
|
||||
hasFound = finder(UserMark::Type::GUIDE_CLUSTER) || hasFound;
|
||||
|
||||
if (!hasFound)
|
||||
{
|
||||
for (auto const & pair : m_categories)
|
||||
|
|
|
@ -2844,6 +2844,9 @@ UserMark const * Framework::FindUserMarkInTapPosition(place_page::BuildInfo cons
|
|||
if (type == UserMark::Type::ROUTING || type == UserMark::Type::ROAD_WARNING)
|
||||
return df::TapInfo::GetRoutingPointSearchRect(buildInfo.m_mercator, m_currentModelView);
|
||||
|
||||
if (type == UserMark::Type::GUIDE || type == UserMark::Type::GUIDE_CLUSTER)
|
||||
return df::TapInfo::GetGuideSearchRect(buildInfo.m_mercator, m_currentModelView);
|
||||
|
||||
return df::TapInfo::GetDefaultSearchRect(buildInfo.m_mercator, m_currentModelView);
|
||||
},
|
||||
[](UserMark::Type type)
|
||||
|
|
Loading…
Add table
Reference in a new issue