Fixed feature selection

This commit is contained in:
r.kuznetsov 2019-03-13 15:53:15 +03:00
parent f821ea1e34
commit fd49bdb9c2

View file

@ -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)
{