| 55 | } |
| 56 | |
| 57 | MapStyle GetDarkMapStyleVariant(MapStyle mapStyle) |
| 58 | { |
| 59 | if (MapStyleIsDark(mapStyle) || mapStyle == MapStyleMerged) |
| 60 | return mapStyle; |
| 61 | |
| 62 | switch (mapStyle) |
| 63 | { |
| 64 | case MapStyleDefaultLight: return MapStyleDefaultDark; |
| 65 | case MapStyleVehicleLight: return MapStyleVehicleDark; |
| 66 | case MapStyleOutdoorsLight: return MapStyleOutdoorsDark; |
| 67 | default: CHECK(false, ()); return MapStyleDefaultDark; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | MapStyle GetLightMapStyleVariant(MapStyle mapStyle) |
| 72 | { |
no test coverage detected