No trunk, No pass through living_street and service
| 160 | |
| 161 | // No trunk, No pass through living_street and service |
| 162 | VehicleModel::LimitsInitList UkraineOptions() |
| 163 | { |
| 164 | auto res = NoTrunk(); |
| 165 | for (auto & e : res) |
| 166 | if (e.m_type == HighwayType::HighwayLivingStreet || e.m_type == HighwayType::HighwayService) |
| 167 | e.m_isPassThroughAllowed = false; |
| 168 | return res; |
| 169 | } |
| 170 | |
| 171 | VehicleModel::SurfaceInitList const kBicycleSurface = { |
| 172 | // {{surfaceType}, {weightFactor, etaFactor}} |
no test coverage detected