forked from organicmaps/organicmaps
Convenient method in OSM Server API.
This commit is contained in:
parent
6275a0003e
commit
705d1dff45
2 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue