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:
authorSergey Magidovich <mgsergio@mapswithme.com>2016-03-21 14:40:44 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:59:26 +0300
commitd4aa42b8a4e3bd8272f4615e83e43150f34ba834 (patch)
tree0c2ca9dd925b075363bf728cd3330e76376cd319 /editor/osm_feature_matcher.hpp
parent36fc19a3d2554bdc931b79bbf20d7d0b3a5b8213 (diff)
Match against relations.
Diffstat (limited to 'editor/osm_feature_matcher.hpp')
-rw-r--r--editor/osm_feature_matcher.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/osm_feature_matcher.hpp b/editor/osm_feature_matcher.hpp
index 0c1f05e7bb..2d3947317f 100644
--- a/editor/osm_feature_matcher.hpp
+++ b/editor/osm_feature_matcher.hpp
@@ -12,6 +12,6 @@ namespace osm
/// @returns closest to the latLon node from osm or empty node if none is close enough.
pugi::xml_node GetBestOsmNode(pugi::xml_document const & osmResponse, ms::LatLon const & latLon);
/// @returns a way from osm with similar geometry or empy node if can't find such way.
-pugi::xml_node GetBestOsmWay(pugi::xml_document const & osmResponse,
- vector<m2::PointD> const & geometry);
+pugi::xml_node GetBestOsmWayOrRelation(pugi::xml_document const & osmResponse,
+ vector<m2::PointD> const & geometry);
} // namespace osm