forked from organicmaps/organicmaps
[generator] Set oneway together with junction=circular.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
6cac9cb023
commit
e13e279f10
1 changed files with 5 additions and 0 deletions
|
@ -959,6 +959,11 @@ void PostprocessElement(OsmElement * p, FeatureBuilderParams & params)
|
|||
params.SetReversedGeometry(true);
|
||||
}},
|
||||
{"oneway", "!", [&noOneway] { noOneway = true; }},
|
||||
// Unlike "roundabout", "circular" is not assumed to force oneway=yes
|
||||
// (https://wiki.openstreetmap.org/wiki/Tag:junction%3Dcircular), but!
|
||||
// There are a lot of junction=circular without oneway tag, which is a mapping error (run overpass under England).
|
||||
// And most of this junctions are assumed to be oneway.
|
||||
{"junction", "circular", [&addOneway] { addOneway = true; }},
|
||||
{"junction", "roundabout", [&addOneway] { addOneway = true; }},
|
||||
|
||||
{"access", "private", [&AddParam] { AddParam(CachedTypes::Private); }},
|
||||
|
|
Loading…
Add table
Reference in a new issue