goelocation finished

This commit is contained in:
2020-12-06 14:41:54 +01:00
parent 5f48de6027
commit 98ef6639c5
2 changed files with 53 additions and 46 deletions

View File

@@ -1,4 +1,5 @@
import 'dart:convert';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:http/http.dart' as http;
import 'package:flutter/foundation.dart';
import './settings.dart';
@@ -452,3 +453,10 @@ class MenuiWorkingHours {
MenuiWorkingHours(
this.pn, this.wt, this.sr, this.cz, this.pt, this.sb, this.nd);
}
class MarkersAndLocation {
final Map<MarkerId, Marker> markers;
final LatLng coordinates;
MarkersAndLocation({@required this.markers, @required this.coordinates});
}