forked from organicmaps/organicmaps
review fix
This commit is contained in:
parent
3261f01982
commit
8e5011bccb
1 changed files with 3 additions and 3 deletions
|
@ -13,8 +13,8 @@
|
|||
namespace df
|
||||
{
|
||||
|
||||
int const SIMPLIFY_BOTTOM = 9;
|
||||
int const SIMPLIFY_TOP = 13;
|
||||
int const SIMPLIFY_BOTTOM = 10;
|
||||
int const SIMPLIFY_TOP = 12;
|
||||
|
||||
RuleDrawer::RuleDrawer(TDrawerCallback const & fn, ref_ptr<EngineContext> context)
|
||||
: m_callback(fn)
|
||||
|
@ -65,7 +65,7 @@ void RuleDrawer::operator()(FeatureType const & f)
|
|||
else if (s.LineStyleExists())
|
||||
{
|
||||
ApplyLineFeature apply(m_context, f.GetID(), s.GetCaptionDescription(),
|
||||
m_currentScaleGtoP, zoomLevel > SIMPLIFY_BOTTOM && zoomLevel < SIMPLIFY_TOP);
|
||||
m_currentScaleGtoP, zoomLevel >= SIMPLIFY_BOTTOM && zoomLevel <= SIMPLIFY_TOP);
|
||||
f.ForEachPointRef(apply, zoomLevel);
|
||||
|
||||
if (apply.HasGeometry())
|
||||
|
|
Loading…
Add table
Reference in a new issue