forked from organicmaps/organicmaps
Minimum simplified country polygon size was limited to 10 points
This commit is contained in:
parent
3f5ed1cc9b
commit
dd86845706
1 changed files with 7 additions and 2 deletions
|
@ -18,6 +18,8 @@
|
|||
#define BORDERS_DIR "borders/"
|
||||
#define BORDERS_EXTENSION ".kml"
|
||||
|
||||
#define MIN_SIMPLIFIED_POINTS_COUNT 10
|
||||
|
||||
namespace kml
|
||||
{
|
||||
|
||||
|
@ -121,8 +123,11 @@ namespace kml
|
|||
{
|
||||
MercPointsContainerT simplifiedPoints;
|
||||
feature::SimplifyPoints(points, simplifiedPoints, m_simplifyCountriesLevel);
|
||||
LOG_SHORT(LINFO, (m_country.m_name, numPoints, "simplified to ", simplifiedPoints.size()));
|
||||
points.swap(simplifiedPoints);
|
||||
if (simplifiedPoints.size() > MIN_SIMPLIFIED_POINTS_COUNT)
|
||||
{
|
||||
LOG_SHORT(LINFO, (m_country.m_name, numPoints, "simplified to ", simplifiedPoints.size()));
|
||||
points.swap(simplifiedPoints);
|
||||
}
|
||||
}
|
||||
|
||||
// third, convert mercator doubles to uint points
|
||||
|
|
Loading…
Add table
Reference in a new issue