[generator] Fixed converting to point.

This commit is contained in:
Maksim Andrianov 2019-03-18 16:46:17 +03:00 committed by Tatiana Yan
parent 03fc11c9ba
commit 747b1cf248

View file

@ -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;