From 56df2871c412bb59b5e3d2d1a0479d151b9c3f8f Mon Sep 17 00:00:00 2001 From: Dewmal Date: Sun, 22 Mar 2020 21:11:59 +0530 Subject: [PATCH] Remove user location history from selected case map view --- .../screen/selected_case_detail_screen.dart | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/page/screen/selected_case_detail_screen.dart b/lib/page/screen/selected_case_detail_screen.dart index 45676ba..cb73a1e 100644 --- a/lib/page/screen/selected_case_detail_screen.dart +++ b/lib/page/screen/selected_case_detail_screen.dart @@ -59,16 +59,16 @@ class _SelectedCaseDetailScreenState extends State { position: LatLng(l.latitude, l.longitude)); }).toList(); - locationMarkers.addAll(locations.map((l) { - return Marker( - icon: userIcon, - alpha: 0.5, - infoWindow: InfoWindow( - title: "You where there at ${dateFormat.format(l.date)}", - snippet: ""), - markerId: MarkerId("${l.date.millisecondsSinceEpoch}"), - position: LatLng(l.latitude, l.longitude)); - }).toList(growable: false)); +// locationMarkers.addAll(locations.map((l) { +// return Marker( +// icon: userIcon, +// alpha: 0.5, +// infoWindow: InfoWindow( +// title: "You where there at ${dateFormat.format(l.date)}", +// snippet: ""), +// markerId: MarkerId("${l.date.millisecondsSinceEpoch}"), +// position: LatLng(l.latitude, l.longitude)); +// }).toList(growable: false)); }); }); });