Creates a Point from JSON data.
factory Point.fromJson(Map<String, dynamic> json) { final coordinates = json['coordinates']; return Point(_toLatLng(coordinates)); }