forked from organicmaps/organicmaps
Added separate function that finds building at point.
This commit is contained in:
parent
0b9e6bc5c5
commit
d6cae1094f
2 changed files with 23 additions and 5 deletions
|
@ -1891,6 +1891,25 @@ void Framework::UpdateMinBuildingsTapZoom()
|
|||
m_minBuildingsTapZoom = feature::GetDrawableScaleRange(classif().GetTypeByPath({"building"})).first + 1;
|
||||
}
|
||||
|
||||
unique_ptr<FeatureType> Framework::FindBuildingAtPoint(m2::PointD const & mercator) const
|
||||
{
|
||||
unique_ptr<FeatureType> feature;
|
||||
if (GetDrawScale() >= m_minBuildingsTapZoom)
|
||||
{
|
||||
constexpr int kScale = scales::GetUpperScale();
|
||||
constexpr double kSelectRectWidthInMeters = 1.1;
|
||||
m2::RectD const rect = MercatorBounds::RectByCenterXYAndSizeInMeters(mercator, kSelectRectWidthInMeters);
|
||||
m_model.ForEachFeature(rect, [&](FeatureType & ft)
|
||||
{
|
||||
if (feature == nullptr &&
|
||||
ft.GetFeatureType() == feature::GEOM_AREA && ftypes::IsBuildingChecker::Instance()(ft) &&
|
||||
ft.GetLimitRect(kScale).IsPointInside(mercator) && feature::GetMinDistanceMeters(ft, mercator) == 0.0)
|
||||
feature.reset(new FeatureType(ft));
|
||||
}, kScale);
|
||||
}
|
||||
return feature;
|
||||
}
|
||||
|
||||
df::SelectionShape::ESelectedObject Framework::OnTapEventImpl(df::TapInfo const & tapInfo,
|
||||
place_page::Info & outInfo) const
|
||||
{
|
||||
|
@ -1941,12 +1960,10 @@ df::SelectionShape::ESelectedObject Framework::OnTapEventImpl(df::TapInfo const
|
|||
|
||||
FeatureID featureTapped = tapInfo.m_featureTapped;
|
||||
|
||||
if (!featureTapped.IsValid() && df::GetDrawTileScale(m_currentModelView) >= m_minBuildingsTapZoom)
|
||||
if (!featureTapped.IsValid())
|
||||
{
|
||||
unique_ptr<FeatureType> const feature = GetFeatureAtPoint(m_currentModelView.PtoG(pxPoint2d));
|
||||
|
||||
if (feature != nullptr && feature->GetFeatureType() == feature::GEOM_AREA &&
|
||||
ftypes::IsBuildingChecker::Instance()(*feature))
|
||||
unique_ptr<FeatureType> const feature = FindBuildingAtPoint(m_currentModelView.PtoG(pxPoint2d));
|
||||
if (feature != nullptr)
|
||||
featureTapped = feature->GetID();
|
||||
}
|
||||
|
||||
|
|
|
@ -291,6 +291,7 @@ private:
|
|||
/// outInfo is valid only if return value is not df::SelectionShape::OBJECT_EMPTY.
|
||||
df::SelectionShape::ESelectedObject OnTapEventImpl(df::TapInfo const & tapInfo,
|
||||
place_page::Info & outInfo) const;
|
||||
unique_ptr<FeatureType> FindBuildingAtPoint(m2::PointD const & mercator) const;
|
||||
void UpdateMinBuildingsTapZoom();
|
||||
|
||||
int m_minBuildingsTapZoom;
|
||||
|
|
Loading…
Add table
Reference in a new issue