forked from organicmaps/organicmaps-tmp
Fix transit to pedestrian connection
This commit is contained in:
parent
e8eadc4f22
commit
eaf67336aa
1 changed files with 4 additions and 3 deletions
|
@ -52,10 +52,11 @@ void TransitWorldGraph::GetEdgeList(Segment const & segment, bool isOutgoing, bo
|
|||
vector<SegmentEdge> fakeFromReal;
|
||||
for (auto const & edge : edges)
|
||||
{
|
||||
for (auto const & s : transitGraph.GetFake(edge.GetTarget()))
|
||||
auto const & edgeSegment = edge.GetTarget();
|
||||
for (auto const & s : transitGraph.GetFake(edgeSegment))
|
||||
{
|
||||
bool const haveSameFront = GetJunction(segment, true /* front */) == GetJunction(s, true);
|
||||
bool const haveSameBack = GetJunction(segment, false /* front */) == GetJunction(s, false);
|
||||
bool const haveSameFront = GetJunction(edgeSegment, true /* front */) == GetJunction(s, true);
|
||||
bool const haveSameBack = GetJunction(edgeSegment, false /* front */) == GetJunction(s, false);
|
||||
if ((isOutgoing && haveSameBack) || (!isOutgoing && haveSameFront))
|
||||
fakeFromReal.emplace_back(s, edge.GetWeight());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue