| 492 | } |
| 493 | |
| 494 | void Route::GetTurnsForTesting(vector<TurnItem> & turns) const |
| 495 | { |
| 496 | turns.clear(); |
| 497 | for (auto const & s : m_routeSegments) |
| 498 | if (IsNormalTurn(s.GetTurn())) |
| 499 | turns.push_back(s.GetTurn()); |
| 500 | } |
| 501 | |
| 502 | double Route::GetSegLenMeters(size_t segIdx) const |
| 503 | { |