forked from organicmaps/organicmaps
Use nearest pedestrian segment stored in mwm for transit to real mapping
This commit is contained in:
parent
f3b47f6e48
commit
d7f453669f
1 changed files with 3 additions and 4 deletions
|
@ -80,11 +80,10 @@ void TransitGraph::Fill(vector<transit::Stop> const & stops, vector<transit::Gat
|
|||
|
||||
for (auto const & gate : gates)
|
||||
{
|
||||
// TODO (@t.yan) after https://github.com/mapsme/omim/pull/7240 merge
|
||||
// auto const gateSegment = gate.GetBestPedestrianSegment();
|
||||
// Segment real(numMwmId, gateSegment.GetFeatureId(), gateSegment.GetSegmentIdx(), gateSegment.GetForward());
|
||||
auto const gateSegment = gate.GetBestPedestrianSegment();
|
||||
Segment real(numMwmId, gateSegment.GetFeatureId(), gateSegment.GetSegmentIdx(), gateSegment.GetForward());
|
||||
auto const ending =
|
||||
MakeFakeEnding(Segment() /* real */, gate.GetPoint(), estimator, indexGraph);
|
||||
MakeFakeEnding(real, gate.GetPoint(), estimator, indexGraph);
|
||||
if (gate.GetEntrance())
|
||||
AddGate(gate, ending, stopCoords, true /* isEnter */);
|
||||
if (gate.GetExit())
|
||||
|
|
Loading…
Add table
Reference in a new issue