Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaria Volvenkova <d.volvenkova@corp.mail.ru>2017-11-24 03:57:09 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2017-11-28 16:47:49 +0300
commit1966d21f914b1655840459ac9a501494e0ce0563 (patch)
treeadc0e793fd3264c145bb164b134e3f383a6b2332 /drape_frontend/user_mark_shapes.hpp
parent6482843cb0afec52d8cfd057b21788b6008666cc (diff)
New transit mark implementation.
Diffstat (limited to 'drape_frontend/user_mark_shapes.hpp')
-rw-r--r--drape_frontend/user_mark_shapes.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/drape_frontend/user_mark_shapes.hpp b/drape_frontend/user_mark_shapes.hpp
index a35e72ab9d..1686065234 100644
--- a/drape_frontend/user_mark_shapes.hpp
+++ b/drape_frontend/user_mark_shapes.hpp
@@ -18,10 +18,11 @@ struct UserMarkRenderParams
int m_minZoom = 1;
m2::PointD m_pivot = m2::PointD(0.0, 0.0);
m2::PointD m_pixelOffset = m2::PointD(0.0, 0.0);
- std::string m_symbolName;
dp::Anchor m_anchor = dp::Center;
- drape_ptr<std::vector<m2::PointF>> m_symbolSizes;
- drape_ptr<dp::TitleDecl> m_titleDecl;
+ drape_ptr<UserPointMark::SymbolSizesZoomInfo> m_symbolSizes;
+ drape_ptr<UserPointMark::ColoredSymbolZoomInfo> m_coloredSymbols;
+ drape_ptr<UserPointMark::SymbolNameZoomInfo> m_symbolNames;
+ drape_ptr<UserPointMark::TitlesInfo> m_titleDecl;
bool m_hasSymbolPriority = false;
bool m_hasTitlePriority = false;
uint16_t m_priority = 0;