nav, header and map image cleanup

This commit is contained in:
Matt Walsh
2025-05-14 14:50:02 -05:00
parent 468e057c51
commit 7fae649357
230 changed files with 34 additions and 1155 deletions

View File

@@ -28,11 +28,11 @@ class RegionalForecast extends WeatherDisplay {
// there are enough other cities available to populate the map sufficiently even if some do not load
// pre-load the base map
let baseMap = 'images/Basemap2.png';
let baseMap = 'images/map/basemap.png';
if (weatherParameters.state === 'HI') {
baseMap = 'images/HawaiiRadarMap4.png';
baseMap = 'images/maps/radar-hawaii.png';
} else if (weatherParameters.state === 'AK') {
baseMap = 'images/AlaskaRadarMap6.png';
baseMap = 'images/maps/radar-alaska.png';
}
this.elem.querySelector('.map img').src = baseMap;