Add a small forecast example.

This commit is contained in:
Michael Teeuw
2017-09-22 13:26:44 +02:00
parent 713111254b
commit ff9c6bac0a
4 changed files with 101 additions and 14 deletions

View File

@@ -14,11 +14,14 @@
class WeatherObject {
constructor() {
this.date = null
this.windSpeed = null
this.windDirection = null
this.sunrise = null
this.sunset = null
this.temperature = null
this.minTemperature = null,
this.maxTemperature = null,
this.weatherType = null
}