forked from organicmaps/organicmaps
[drape] Fixed uninitialized center point for area Feature.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
d9c9c017bb
commit
d5ae775fe9
3 changed files with 10 additions and 14 deletions
|
@ -433,11 +433,7 @@ ApplyPointFeature::ApplyPointFeature(TileKey const & tileKey, TInsertShapeFn con
|
|||
CaptionDescription const & captions, float posZ)
|
||||
: TBase(tileKey, insertShape, f, captions)
|
||||
, m_posZ(posZ)
|
||||
, m_hasArea(false)
|
||||
, m_createdByEditor(false)
|
||||
, m_obsoleteInEditor(false)
|
||||
, m_symbolDepth(dp::kMinDepth)
|
||||
, m_symbolRule(nullptr)
|
||||
{}
|
||||
|
||||
void ApplyPointFeature::operator()(m2::PointD const & point, bool hasArea)
|
||||
|
@ -528,7 +524,7 @@ void ApplyPointFeature::Finish(ref_ptr<dp::TextureManager> texMng)
|
|||
symbolSize = region.GetPixelSize();
|
||||
|
||||
if (region.IsValid())
|
||||
m_insertShape(make_unique_dp<PoiSymbolShape>(m2::PointD(m_centerPoint), params, m_tileKey, 0 /* textIndex */));
|
||||
m_insertShape(make_unique_dp<PoiSymbolShape>(m_centerPoint, params, m_tileKey, 0 /* textIndex */));
|
||||
else
|
||||
LOG(LERROR, ("Style error. Symbol name must be valid for feature", m_f.GetID()));
|
||||
}
|
||||
|
@ -546,7 +542,7 @@ void ApplyPointFeature::Finish(ref_ptr<dp::TextureManager> texMng)
|
|||
}
|
||||
|
||||
m_textParams.m_startOverlayRank = hasIcon ? dp::OverlayRank1 : dp::OverlayRank0;
|
||||
auto shape = make_unique_dp<TextShape>(m2::PointD(m_centerPoint), m_textParams, m_tileKey, symbolSize,
|
||||
auto shape = make_unique_dp<TextShape>(m_centerPoint, m_textParams, m_tileKey, symbolSize,
|
||||
m2::PointF(0.0f, 0.0f) /* symbolOffset */,
|
||||
dp::Center /* symbolAnchor */, 0 /* textIndex */);
|
||||
m_insertShape(std::move(shape));
|
||||
|
@ -564,7 +560,7 @@ void ApplyPointFeature::Finish(ref_ptr<dp::TextureManager> texMng)
|
|||
m_hnParams.m_startOverlayRank = dp::OverlayRank1;
|
||||
}
|
||||
}
|
||||
m_insertShape(make_unique_dp<TextShape>(m2::PointD(m_centerPoint), m_hnParams, m_tileKey, symbolSize,
|
||||
m_insertShape(make_unique_dp<TextShape>(m_centerPoint, m_hnParams, m_tileKey, symbolSize,
|
||||
m2::PointF(0.0f, 0.0f) /* symbolOffset */,
|
||||
dp::Center /* symbolAnchor */, 0 /* textIndex */));
|
||||
}
|
||||
|
|
|
@ -72,14 +72,14 @@ protected:
|
|||
float const m_posZ;
|
||||
|
||||
private:
|
||||
bool m_hasArea;
|
||||
bool m_createdByEditor;
|
||||
bool m_obsoleteInEditor;
|
||||
float m_symbolDepth;
|
||||
SymbolRuleProto const * m_symbolRule;
|
||||
m2::PointF m_centerPoint;
|
||||
TextViewParams m_textParams;
|
||||
TextViewParams m_hnParams;
|
||||
m2::PointD m_centerPoint;
|
||||
SymbolRuleProto const * m_symbolRule = nullptr;
|
||||
float m_symbolDepth;
|
||||
bool m_hasArea = false;
|
||||
bool m_createdByEditor = false;
|
||||
bool m_obsoleteInEditor = false;
|
||||
};
|
||||
|
||||
class ApplyAreaFeature : public ApplyPointFeature
|
||||
|
|
|
@ -322,7 +322,7 @@ void RuleDrawer::ProcessAreaAndPointStyle(FeatureType & f, Stylist const & s, TI
|
|||
apply.ProcessAreaRule(s.m_areaRule, areaDepth, false);
|
||||
|
||||
/// @todo Can we put this check in the beginning of this function?
|
||||
if (!IsDiscardCustomFeature(f.GetID()))
|
||||
if (applyPointStyle && !IsDiscardCustomFeature(f.GetID()))
|
||||
{
|
||||
// Process point style.
|
||||
if (s.m_symbolRule != nullptr)
|
||||
|
|
Loading…
Add table
Reference in a new issue