forked from organicmaps/organicmaps-tmp
[Experimental] Do no skip small coastline polygons with first scale level.
This commit is contained in:
parent
18104efd0d
commit
5561301959
2 changed files with 8 additions and 4 deletions
|
@ -463,13 +463,17 @@ namespace feature
|
|||
|
||||
SimplifyPoints(*iH, simplified.back(), level, isCoast, rect);
|
||||
|
||||
if (!IsGoodArea(simplified.back(), level))
|
||||
simplified.pop_back();
|
||||
else
|
||||
// Do not skip small coastline polygons for the first scale level.
|
||||
if ((isCoast && i == 0) || IsGoodArea(simplified.back(), level))
|
||||
{
|
||||
// At this point we don't need last point equal to first.
|
||||
simplified.back().pop_back();
|
||||
}
|
||||
else
|
||||
{
|
||||
// Remove small polygon.
|
||||
simplified.pop_back();
|
||||
}
|
||||
}
|
||||
|
||||
if (!simplified.empty())
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
namespace feature
|
||||
{
|
||||
static int g_arrWorldScales[] = { 5, 7, 9 }; // 9 = scales::GetUpperWorldScale()
|
||||
static int g_arrWorldScales[] = { 3, 5, 7, 9 }; // 9 = scales::GetUpperWorldScale()
|
||||
static int g_arrCountryScales[] = { 12, 15, 17 }; // 17 = scales::GetUpperScale()
|
||||
|
||||
inline string GetTagForIndex(char const * prefix, int ind)
|
||||
|
|
Loading…
Add table
Reference in a new issue