-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.ts
72 lines (71 loc) · 1.85 KB
/
data.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
export const cities: string[] = [
'基隆市',
'新北市',
'臺北市',
'桃園市',
'新竹縣',
'新竹市',
'苗栗縣',
'臺中市',
'彰化縣',
'南投縣',
'雲林縣',
'嘉義縣',
'嘉義市',
'臺南市',
'高雄市',
'屏東縣',
'宜蘭縣',
'花蓮縣',
'臺東縣',
'澎湖縣',
'金門縣',
'連江縣'
]
export const weatherConditions: WeatherCondition[] = [
{
condition: '晴天',
weatherImg: 'https://www.cwb.gov.tw/V8/assets/img/weather_icons/weathers/svg_icon/day/01.svg',
bgimg: '/img/sunny.jpeg'
},
{
condition: '晴時多雲',
weatherImg: 'https://www.cwb.gov.tw/V8/assets/img/weather_icons/weathers/svg_icon/day/03.svg',
bgimg: '/img/sunny-could.jpeg'
},
{
condition: '陰',
weatherImg: 'https://www.cwb.gov.tw/V8/assets/img/weather_icons/weathers/svg_icon/day/07.svg',
bgimg: '/img/dark-coulds.jpeg'
},
{
condition: '多雲',
weatherImg: 'https://www.cwb.gov.tw/V8/assets/img/weather_icons/weathers/svg_icon/day/04.svg',
bgimg: '/img/coulds.jpeg'
},
{
condition: '多雲時晴',
weatherImg: 'https://www.cwb.gov.tw/V8/assets/img/weather_icons/weathers/svg_icon/day/03.svg',
bgimg: '/img/sunny-could.jpeg'
},
{
condition: '雨',
weatherImg: 'https://www.cwb.gov.tw/V8/assets/img/weather_icons/weathers/svg_icon/day/11.svg',
bgimg: '/img/rain.jpeg'
},
{
condition: '雷',
weatherImg: 'https://www.cwb.gov.tw/V8/assets/img/weather_icons/weathers/svg_icon/day/18.svg',
bgimg: '/img/thunder.jpeg'
},
{
condition: '雪',
weatherImg: 'https://www.cwb.gov.tw/V8/assets/img/weather_icons/weathers/svg_icon/day/23.svg',
bgimg: '/img/snow.jpeg'
},
{
condition: '霧',
weatherImg: 'https://www.cwb.gov.tw/V8/assets/img/weather_icons/weathers/svg_icon/day/26.svg',
bgimg: '/img/fog.jpeg'
}
];