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:
authorDmitry Kunin <dkunin@mapswith.me>2013-07-29 17:03:55 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:04:12 +0300
commit237acea1779c39308c6d81e40620198e71c2e474 (patch)
tree896daedf8dc41e0195a582a72ea19d00a7324891 /map/information_display.cpp
parent129178ca622dbe1dfec60ff8972795a7e7e35350 (diff)
[tracks] Base tracks stuff.
[track] Draw only points in screen rect. [track] DisplayList drawing. [track] Tracks now have separate screen. [track] Removed stub data. [track] LineString parsing from .kml. [track] Serialization to .kml
Diffstat (limited to 'map/information_display.cpp')
-rw-r--r--map/information_display.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/map/information_display.cpp b/map/information_display.cpp
index ce77f5d46a..3858dd2dec 100644
--- a/map/information_display.cpp
+++ b/map/information_display.cpp
@@ -259,7 +259,9 @@ void InformationDisplay::drawMemoryWarning(Drawer * drawer)
void InformationDisplay::drawPlacemark(Drawer * pDrawer, string const & symbol, m2::PointD const & pt)
{
- pDrawer->screen()->drawDisplayList(m_controller->GetDisplayListCache()->FindSymbol(symbol.c_str()).get(),
+ pDrawer->screen()->drawDisplayList(m_controller
+ ->GetDisplayListCache()
+ ->FindSymbol(symbol.c_str()).get(),
math::Shift(math::Identity<double, 3>(), pt));
}