static
| 68 | |
| 69 | // static |
| 70 | std::optional<ms::LatLon> RoutingSettings::GetCoords(bool start) |
| 71 | { |
| 72 | std::string input; |
| 73 | settings::TryGet(start ? kStartCoordsCachedSettings : kFinishCoordsCachedSettings, input); |
| 74 | return GetCoordsFromString(input); |
| 75 | } |
| 76 | |
| 77 | // static |
| 78 | void RoutingSettings::LoadSession(Framework & framework) |