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-05-30 15:28:50 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:56:01 +0300
commit0912f3852636a87dead4945f8d965dec737ce8b5 (patch)
tree7178865eaaaaea2113a80e5688e5caff6156b7e6 /map/mwm_url.cpp
parentdfe7ae1a8192765f319f5c4d2a943b7d456963bf (diff)
[core] Small viewrect bag fix.
Diffstat (limited to 'map/mwm_url.cpp')
-rw-r--r--map/mwm_url.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/mwm_url.cpp b/map/mwm_url.cpp
index dae17b5bd6..eb74568a4e 100644
--- a/map/mwm_url.cpp
+++ b/map/mwm_url.cpp
@@ -100,7 +100,7 @@ void ParsedMapApi::AddKeyValue(string const & key, string const & value)
m_points.back().m_lat = lat;
m_points.back().m_lon = lon;
- m_showRect = m2::Add(m_showRect, m2::PointD(lat, lon));
+ m_showRect = m2::Add(m_showRect, m2::PointD(lon, lat));
}
else if (key == "n")
{