Added reverse geocoder

This commit is contained in:
vjrj 2018-06-11 10:06:28 +02:00
parent ef257fcfe1
commit 662deb3086
4 changed files with 81 additions and 45 deletions

View file

@ -1,25 +1,28 @@
import 'package:flutter/material.dart';
class BasicLocation {
class BasicLocation extends Comparable<BasicLocation> {
final double lat;
final double lon;
final String description;
String description;
static BasicLocation noLocation = new BasicLocation(lat:0.0, lon:0.0);
static BasicLocation noLocation = new BasicLocation(lat: 0.0, lon: 0.0);
BasicLocation({@required this.lat, @required this.lon, this.description});
int compareTo(BasicLocation other) {
return lat == other.lat && lon == other.lon ? 1 : 0;
}
bool operator ==(o) => o is BasicLocation && o.lat == lat && o.lon == lon;
BasicLocation.fromJson(Map<String, dynamic> json)
: lat = json['lat'],
lon = json['lon'],
description = json['description']
;
Map<String, dynamic> toJson() =>
{
'lat': lat,
'lon': lon,
'description': description,
};
lon = json['lon'],
description = json['description'];
Map<String, dynamic> toJson() => {
'lat': lat,
'lon': lon,
'description': description,
};
}