[generator] Roundabouts should have one direction.

This commit is contained in:
Olga Khlopkova 2020-06-30 16:35:13 +03:00 committed by Maksim Andrianov
parent 3ef9ffef18
commit d7f8d5c408

View file

@ -154,6 +154,8 @@ feature::FeatureBuilder CreateFb(std::vector<m2::PointD> const & way, uint64_t i
fb.AddType(roundaboutType);
static uint32_t const defaultRoadType = classif().GetTypeByPath({"highway", "tertiary"});
fb.AddType(roadType == 0 ? defaultRoadType : roadType);
static uint32_t const onewayType = classif().GetTypeByPath({"hwtag", "oneway"});
fb.AddType(onewayType);
return fb;
}