[generator:geo_objects] Fix StreetsBuilder::IsStreet()

This commit is contained in:
Anatoly Serdtcev 2019-04-18 15:28:58 +03:00 committed by mpimenov
parent 705807bce9
commit 639eb6471f

View file

@ -114,7 +114,7 @@ bool StreetsBuilder::IsStreet(OsmElement const & element)
if (element.HasTag("highway") && (element.IsWay() || element.IsRelation()))
return true;
if (element.HasTag("highway", "square"))
if (element.HasTag("place", "square"))
return true;
return false;