forked from organicmaps/organicmaps
ReverseGeocoder::GetNearbyFeatureStreets().
This commit is contained in:
parent
54cf9be23f
commit
230535b2fe
2 changed files with 31 additions and 4 deletions
|
@ -11,6 +11,8 @@
|
|||
|
||||
#include "base/stl_helpers.hpp"
|
||||
|
||||
#include "std/limits.hpp"
|
||||
|
||||
namespace search
|
||||
{
|
||||
namespace
|
||||
|
@ -114,10 +116,6 @@ void ReverseGeocoder::GetNearbyAddress(m2::PointD const & center, Address & addr
|
|||
GetNearbyStreets(b.m_center, streets);
|
||||
|
||||
uint32_t ind;
|
||||
|
||||
// TODO (AlexZ): False result of table->Get(...) means that
|
||||
// there're no street for a building. Somehow it should be used
|
||||
// in a Features Editor.
|
||||
if (table->Get(b.m_id.m_index, ind) && ind < streets.size())
|
||||
{
|
||||
addr.m_building = b;
|
||||
|
@ -127,6 +125,32 @@ void ReverseGeocoder::GetNearbyAddress(m2::PointD const & center, Address & addr
|
|||
}
|
||||
}
|
||||
|
||||
pair<vector<ReverseGeocoder::Street>, uint32_t> ReverseGeocoder::GetNearbyFeatureStreets(
|
||||
FeatureType const & feature) const
|
||||
{
|
||||
pair<vector<ReverseGeocoder::Street>, uint32_t> result;
|
||||
auto & streetIndex = result.second;
|
||||
streetIndex = numeric_limits<uint32_t>::max();
|
||||
|
||||
FeatureID const fid = feature.GetID();
|
||||
MwmSet::MwmHandle const mwmHandle = m_index.GetMwmHandleById(fid.m_mwmId);
|
||||
if (!mwmHandle.IsAlive())
|
||||
{
|
||||
LOG(LERROR, ("Feature handle is not alive", feature));
|
||||
return result;
|
||||
}
|
||||
|
||||
auto & streets = result.first;
|
||||
GetNearbyStreets(feature::GetCenter(feature), streets);
|
||||
|
||||
unique_ptr<search::v2::HouseToStreetTable> const table =
|
||||
search::v2::HouseToStreetTable::Load(*mwmHandle.GetValue<MwmValue>());
|
||||
|
||||
if (table->Get(fid.m_index, streetIndex) && streetIndex >= streets.size())
|
||||
LOG(LERROR, ("Critical reverse geocoder error, returned", streetIndex, "for", feature));
|
||||
return result;
|
||||
}
|
||||
|
||||
void ReverseGeocoder::GetNearbyBuildings(m2::PointD const & center, vector<Building> & buildings) const
|
||||
{
|
||||
GetNearbyBuildings(center, kLookupRadiusM, buildings);
|
||||
|
|
|
@ -68,6 +68,9 @@ public:
|
|||
|
||||
void GetNearbyAddress(m2::PointD const & center, Address & addr) const;
|
||||
|
||||
/// @returns street segments (can be duplicate names) sorted by distance to feature's center.
|
||||
/// uint32_t, if less than vector.size(), contains index of exact feature's street specified in OSM data.
|
||||
pair<vector<Street>, uint32_t> GetNearbyFeatureStreets(FeatureType const & feature) const;
|
||||
|
||||
void GetNearbyBuildings(m2::PointD const & center, vector<Building> & buildings) const;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue