forked from organicmaps/organicmaps
[bicycle routing] Using bicycle routing in framework.
This commit is contained in:
parent
2a3b73a756
commit
28c1ff751c
1 changed files with 5 additions and 0 deletions
|
@ -2206,6 +2206,11 @@ void Framework::SetRouterImpl(RouterType type)
|
|||
router = CreatePedestrianAStarBidirectionalRouter(m_model.GetIndex(), countryFileGetter);
|
||||
m_routingSession.SetRoutingSettings(routing::GetPedestrianRoutingSettings());
|
||||
}
|
||||
else if (type == RouterType::Bicycle)
|
||||
{
|
||||
router = CreateBicycleAStarBidirectionalRouter(m_model.GetIndex(), countryFileGetter);
|
||||
m_routingSession.SetRoutingSettings(routing::GetBicycleRoutingSettings());
|
||||
}
|
||||
else
|
||||
{
|
||||
auto localFileChecker = [this](string const & countryFile) -> bool
|
||||
|
|
Loading…
Add table
Reference in a new issue