#pragma once #include "map_shape.hpp" #include "shape_view_params.hpp" namespace df { class PoiSymbolShape : public MapShape { public: PoiSymbolShape(m2::PointF const & mercatorPt, PoiSymbolViewParams const & params); virtual void Draw(dp::RefPointer batcher, dp::RefPointer textures) const; private: m2::PointF const m_pt; PoiSymbolViewParams const m_params; }; } // namespace df