forked from organicmaps/organicmaps
[generator] Fixed converting to point.
This commit is contained in:
parent
03fc11c9ba
commit
747b1cf248
1 changed files with 5 additions and 1 deletions
|
@ -300,7 +300,11 @@ public:
|
|||
// because we do not need geometry for invisible features (just search index and placepage
|
||||
// data) and want to avoid size checks applied to areas.
|
||||
if (originalFeature.GetGeomType() != feature::GEOM_POINT)
|
||||
originalFeature.SetCenter(originalFeature.GetGeometryCenter());
|
||||
{
|
||||
auto const center = originalFeature.GetGeometryCenter();
|
||||
originalFeature.ResetGeometry();
|
||||
originalFeature.SetCenter(center);
|
||||
}
|
||||
|
||||
m_worldBucket.PushSure(originalFeature);
|
||||
return;
|
||||
|
|
Loading…
Add table
Reference in a new issue