forked from organicmaps/organicmaps-tmp
Fix possible bug in feature reading.
This commit is contained in:
parent
c53c7190e0
commit
2ae5256135
2 changed files with 7 additions and 2 deletions
|
@ -308,6 +308,12 @@ uint32_t FeatureType::GetPopulation() const
|
|||
return (r == 0 ? 1 : static_cast<uint32_t>(pow(1.1, r)));
|
||||
}
|
||||
|
||||
string FeatureType::GetRoadNumber() const
|
||||
{
|
||||
ParseCommon();
|
||||
return m_Params.ref;
|
||||
}
|
||||
|
||||
namespace
|
||||
{
|
||||
class DoCalcDistance
|
||||
|
|
|
@ -243,8 +243,7 @@ public:
|
|||
|
||||
uint8_t GetRank() const;
|
||||
uint32_t GetPopulation() const;
|
||||
|
||||
inline string GetRoadNumber() const { return m_Params.ref; }
|
||||
string GetRoadNumber() const;
|
||||
|
||||
double GetDistance(m2::PointD const & pt, int scale) const;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue