Convenient method in OSM Server API.

This commit is contained in:
Alex Zolotarev 2016-01-25 12:55:47 +03:00 committed by Sergey Yershov
parent 6275a0003e
commit 705d1dff45
2 changed files with 7 additions and 0 deletions

View file

@ -122,4 +122,9 @@ OsmOAuth::Response ServerApi06::GetXmlFeaturesAtLatLon(double lat, double lon) c
return GetXmlFeaturesInRect(rect);
}
OsmOAuth::Response ServerApi06::GetXmlFeaturesAtLatLon(ms::LatLon const & ll) const
{
return GetXmlFeaturesAtLatLon(ll.lat, ll.lon);
}
} // namespace osm

View file

@ -2,6 +2,7 @@
#include "editor/osm_auth.hpp"
#include "geometry/latlon.hpp"
#include "geometry/rect2d.hpp"
#include "std/map.hpp"
@ -43,6 +44,7 @@ public:
/// @returns OSM xml string with features in the bounding box or empty string on error.
OsmOAuth::Response GetXmlFeaturesInRect(m2::RectD const & latLonRect) const;
OsmOAuth::Response GetXmlFeaturesAtLatLon(double lat, double lon) const;
OsmOAuth::Response GetXmlFeaturesAtLatLon(ms::LatLon const & ll) const;
private:
OsmOAuth m_auth;