forked from organicmaps/organicmaps
Added precise feature center calculation for some objects
This commit is contained in:
parent
48ce989736
commit
003de4ae7e
1 changed files with 14 additions and 1 deletions
|
@ -161,7 +161,13 @@ void ExtractTrafficGeometry(FeatureType const & f, df::RoadClass const & roadCla
|
|||
}
|
||||
}
|
||||
|
||||
} // namespace
|
||||
bool UsePreciseFeatureCenter(FeatureType const & f)
|
||||
{
|
||||
// Add here types for which we want to calculate precise feature center (by best geometry).
|
||||
// Warning! Large amount of such objects can reduce performance.
|
||||
return ftypes::Fc2018Checker::Instance()(f);
|
||||
}
|
||||
} // namespace
|
||||
|
||||
namespace df
|
||||
{
|
||||
|
@ -317,7 +323,14 @@ void RuleDrawer::ProcessAreaStyle(FeatureType const & f, Stylist const & s,
|
|||
f.ForEachTriangle(apply, zoomLevel);
|
||||
apply.SetHotelData(ExtractHotelData(f));
|
||||
if (applyPointStyle)
|
||||
{
|
||||
if (UsePreciseFeatureCenter(f))
|
||||
{
|
||||
f.ResetGeometry();
|
||||
featureCenter = feature::GetCenter(f, FeatureType::BEST_GEOMETRY);
|
||||
}
|
||||
apply(featureCenter, true /* hasArea */);
|
||||
}
|
||||
|
||||
if (CheckCancelled())
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue