Adding as town boundary relation:boundary.

This commit is contained in:
Vladimir Byko-Ianko 2018-08-13 09:08:24 +03:00 committed by Maksim Andrianov
parent 07a0448dc4
commit 8319c92904

View file

@ -103,7 +103,7 @@ void TranslatorPlanet::EmitElement(OsmElement * p)
case OsmElement::EntityType::Relation:
{
// Check if this is our processable relation. Here we process only polygon relations.
if (!p->HasTagValue("type", "multipolygon"))
if (!p->HasTagValue("type", "multipolygon") && !p->HasTagValue("type", "boundary"))
break;
if (!ParseType(p, params))