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:
authorAlex Zolotarev <deathbaba@gmail.com>2012-09-26 15:09:17 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:43:56 +0300
commit01a5a78da4c1d52843ffc7deaa2f43ee67c13da6 (patch)
tree044328ef11aa65c1704d343522c05e77fe459741 /map/address_finder.cpp
parent6a782b1e40d9f3cf5db2f0f8e9c5d64cb69b601b (diff)
Temporarily commented out address retrieving as it's not used
Diffstat (limited to 'map/address_finder.cpp')
-rw-r--r--map/address_finder.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/map/address_finder.cpp b/map/address_finder.cpp
index 6bb952b4ee..157dc5a361 100644
--- a/map/address_finder.cpp
+++ b/map/address_finder.cpp
@@ -492,7 +492,8 @@ void Framework::GetAddressInfo(m2::PointD const & pt, AddressInfo & info) const
getAddress.FillAddress(GetSearchEngine(), info);
- GetLocality(pt, info);
+ // @TODO Temporarily commented - it's slow and not used in UI
+ //GetLocality(pt, info);
}
void Framework::GetAddressInfo(FeatureType const & ft, m2::PointD const & pt, AddressInfo & info) const
@@ -513,7 +514,8 @@ void Framework::GetAddressInfo(FeatureType const & ft, m2::PointD const & pt, Ad
getAddress(ft);
getAddress.FillAddress(GetSearchEngine(), info);
- GetLocality(pt, info);
+ // @TODO Temporarily commented - it's slow and not used in UI
+ //GetLocality(pt, info);
}
void Framework::GetLocality(m2::PointD const & pt, AddressInfo & info) const