forked from organicmaps/organicmaps
[search] Fix result viewport for features with no any texts.
This commit is contained in:
parent
c7913216d2
commit
fc21bc03b5
2 changed files with 8 additions and 0 deletions
|
@ -80,6 +80,10 @@ public:
|
|||
{
|
||||
// get minimal draw text scale for feature type, that not mentioned in GetScaleForType
|
||||
scale = feature::DrawableScaleRangeForText(types).first;
|
||||
|
||||
// if no texts at all - show at maximum zoom
|
||||
if (scale == -1)
|
||||
scale = upperScale;
|
||||
}
|
||||
|
||||
return scales::GetRectForLevel(scale, center, 1.0);
|
||||
|
|
|
@ -28,8 +28,12 @@ namespace feature
|
|||
|
||||
int MinDrawableScaleForFeature(FeatureBase const & f);
|
||||
|
||||
/// @name Get scale range when feature's text is visible.
|
||||
/// @return [-1, -1] if no any text exists
|
||||
//@{
|
||||
pair<int, int> DrawableScaleRangeForText(TypesHolder const & types);
|
||||
pair<int, int> DrawableScaleRangeForText(FeatureBase const & f);
|
||||
//@}
|
||||
|
||||
/// @return (geometry type, is coastline)
|
||||
pair<int, bool> GetDrawRule(FeatureBase const & f, int level,
|
||||
|
|
Loading…
Add table
Reference in a new issue