forked from organicmaps/organicmaps
Fixed feature selection
This commit is contained in:
parent
f821ea1e34
commit
fd49bdb9c2
1 changed files with 6 additions and 7 deletions
|
@ -2448,21 +2448,20 @@ df::SelectionShape::ESelectedObject Framework::OnTapEventImpl(TapEvent const & t
|
|||
}
|
||||
|
||||
FeatureID featureTapped = tapInfo.m_featureTapped;
|
||||
|
||||
if (!featureTapped.IsValid())
|
||||
featureTapped = FindBuildingAtPoint(tapInfo.m_mercator);
|
||||
|
||||
bool showMapSelection = false;
|
||||
if (featureTapped.IsValid())
|
||||
{
|
||||
FillFeatureInfo(featureTapped, outInfo);
|
||||
showMapSelection = true;
|
||||
}
|
||||
else if (tapInfo.m_isLong || tapEvent.m_source == TapEvent::Source::Search)
|
||||
if (tapInfo.m_isLong || tapEvent.m_source == TapEvent::Source::Search)
|
||||
{
|
||||
FillPointInfo(tapInfo.m_mercator, {} /* customTitle */, outInfo);
|
||||
showMapSelection = true;
|
||||
}
|
||||
else if (featureTapped.IsValid())
|
||||
{
|
||||
FillFeatureInfo(featureTapped, outInfo);
|
||||
showMapSelection = true;
|
||||
}
|
||||
|
||||
if (showMapSelection)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue