forked from organicmaps/organicmaps-tmp
small syntax fix
This commit is contained in:
parent
556a9093ae
commit
7e17bf1325
1 changed files with 3 additions and 2 deletions
|
@ -287,8 +287,9 @@ void ApplyLineFeature::ProcessRule(Stylist::rule_wrapper_t const & rule)
|
|||
PathSymbolViewParams params;
|
||||
params.m_depth = depth;
|
||||
params.m_symbolName = symRule.name();
|
||||
params.m_step = symRule.offset() * df::VisualParams::Instance().GetVisualScale();
|
||||
params.m_offset = symRule.step() * df::VisualParams::Instance().GetVisualScale();
|
||||
float const mainScale = df::VisualParams::Instance().GetVisualScale();
|
||||
params.m_step = symRule.offset() * mainScale;
|
||||
params.m_offset = symRule.step() * mainScale;
|
||||
|
||||
m_context.InsertShape(m_tileKey, MovePointer<MapShape>(new PathSymbolShape(m_path, params, m_nextModelViewScale)));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue