add format for weatherapi also
This commit is contained in:
parent
a1bd347ab7
commit
be757a96ec
@ -15,6 +15,8 @@ The free tier is all that's required, you will need to [register](https://www.we
|
|||||||
units: metric # or imperial
|
units: metric # or imperial
|
||||||
apiKey: yourweatherapikey
|
apiKey: yourweatherapikey
|
||||||
cache: 5 # Time in minutes to cache API responses, to stay within limits
|
cache: 5 # Time in minutes to cache API responses, to stay within limits
|
||||||
|
format: # optional, Intl.NumberFormat options
|
||||||
|
maximumFractionDigits: 1
|
||||||
```
|
```
|
||||||
|
|
||||||
You can optionally not pass a `latitude` and `longitude` and the widget will use your current location (requires a secure context, eg. HTTPS).
|
You can optionally not pass a `latitude` and `longitude` and the widget will use your current location (requires a secure context, eg. HTTPS).
|
||||||
|
|||||||
@ -45,6 +45,7 @@ function Widget({ options }) {
|
|||||||
value: options.units === "metric" ? data.current.temp_c : data.current.temp_f,
|
value: options.units === "metric" ? data.current.temp_c : data.current.temp_f,
|
||||||
style: "unit",
|
style: "unit",
|
||||||
unit,
|
unit,
|
||||||
|
...options.format,
|
||||||
})}
|
})}
|
||||||
</PrimaryText>
|
</PrimaryText>
|
||||||
<SecondaryText>{data.current.condition.text}</SecondaryText>
|
<SecondaryText>{data.current.condition.text}</SecondaryText>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user