forked from organicmaps/organicmaps
[editor] Fixed number of streets to suggest, 5 was too low for some places in Moscow.
This commit is contained in:
parent
72030ba643
commit
ac60da7ef8
1 changed files with 1 additions and 1 deletions
|
@ -528,7 +528,7 @@ vector<string> Framework::GetNearbyFeatureStreets(FeatureType const & ft) const
|
|||
// Need to filter out duplicate street names.
|
||||
auto const streets = coder.GetNearbyFeatureStreets(ft);
|
||||
// Reasonable number of different nearby street names to display in UI.
|
||||
size_t const kMinNumberOfNearbyStreets = 5;
|
||||
size_t const kMinNumberOfNearbyStreets = 8;
|
||||
vector<string> results;
|
||||
// Feature's street from OSM data, if exists, always goes first.
|
||||
if (streets.second < streets.first.size())
|
||||
|
|
Loading…
Add table
Reference in a new issue