| 47 | } |
| 48 | |
| 49 | bool MapStyleIsDark(MapStyle mapStyle) |
| 50 | { |
| 51 | for (auto const darkStyle : {MapStyleDefaultDark, MapStyleVehicleDark, MapStyleOutdoorsDark}) |
| 52 | if (mapStyle == darkStyle) |
| 53 | return true; |
| 54 | return false; |
| 55 | } |
| 56 | |
| 57 | MapStyle GetDarkMapStyleVariant(MapStyle mapStyle) |
| 58 | { |
no outgoing calls
no test coverage detected