More work with active fires

This commit is contained in:
vjrj 2018-06-09 17:25:55 +02:00
parent 8e4e469eb8
commit ce2b65f1e0
5 changed files with 38 additions and 43 deletions

View file

@ -5,5 +5,7 @@ class BasicLocation {
final double lon;
final String description;
static BasicLocation noLocation = new BasicLocation(lat:0.0, lon:0.0);
BasicLocation({@required this.lat, @required this.lon, this.description});
}