| 1054 | } |
| 1055 | |
| 1056 | bool IsCarDesignatedHighway(uint32_t type) |
| 1057 | { |
| 1058 | switch (ftypes::IsWayChecker::Instance().GetSearchRank(type)) |
| 1059 | { |
| 1060 | // See search rank / designated list in IsWayChecker |
| 1061 | case ftypes::IsWayChecker::Motorway: |
| 1062 | case ftypes::IsWayChecker::Regular: |
| 1063 | case ftypes::IsWayChecker::Minors: return true; |
| 1064 | default: return false; |
| 1065 | } |
| 1066 | } |
| 1067 | |
| 1068 | bool IsBicycleDesignatedHighway(uint32_t type) |
| 1069 | { |
no test coverage detected