Мне удалось получить правильное расстояние между пользователем и точками долготы и широты из моей базы данных в firestore, и из этого получить totalTime, как указано в функции distance. Но когда я пытаюсь отсортировать свои магазины по их расстоянию в функции sortDistance (), единственное значение из моей функции distance (), которое возвращается на консоль, - это последнее значение в потоке из firestore. Как мне обойти это и распечатать все значения в консоли? Все они печатаются, когда я использую функцию print () внутри функции distance (), но не в функции sortDistance (), которая влияет на мой метод сборки.
import 'dart:async';
import 'dart:math';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:geolocator/geolocator.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:myApp/Cards/Store Card.dart';
import 'package:myApp/Constants/Constants.dart';
class StoreList extends StatefulWidget {
@override
_StoreListState createState() => _StoreListState();
}
class _StoreListState extends State<StoreList> {
StreamSubscription<QuerySnapshot> subscription;
List storeList;
final CollectionReference collectionReference = Firestore.instance.collection('stores');
Geolocator geolocator = Geolocator();
Position userLocation;
bool sort = true;
double time;
Future getLocation() async {
var currentLocation;
try {
currentLocation = await geolocator.getCurrentPosition(
desiredAccuracy: LocationAccuracy.medium);
} catch (e) {
currentLocation = null;
}
return currentLocation;
}
double calculateDistance(lat1, lon1, lat2, lon2){
var p = 0.017453292519943295;
var c = cos;
var a = 0.5 - c((lat2 - lat1) * p)/2 +
c(lat1 * p) * c(lat2 * p) *
(1 - c((lon2 - lon1) * p))/2;
return 12742 * asin(sqrt(a));
}
double distance(Position position, DocumentSnapshot snapshot) {
final double myPositionLat = position.latitude;
final double myPositionLong = position.longitude;
final double lat = snapshot.data['latitude'];
final double long = snapshot.data['longitude'];
double totalTime = calculateDistance(myPositionLat, myPositionLong, lat, long) / 8 * 5 * 60 / 15;
if(totalTime >= 60){
return totalTime;
} else setState(() {
time = totalTime;
});
// print(time);
return time;
}
void sortDistance(){
subscription = collectionReference.snapshots().listen((data) async {
final location = await getLocation();
final documents = data.documents.where((snapshot) => distance(location, snapshot) <= 40).toList();
// documents.sort((a, b) {
//
// final distanceA = distance(location, a);
// final distanceB = distance(location, b);
//
// return distanceA.compareTo(distanceB);
// });
setState(() {
storeList = documents;
});
print(time);
});
}
@override
void initState() {
super.initState();
sortDistance();
}
@override
void dispose() {
subscription?.cancel();
super.dispose();
}
@override
Widget build(BuildContext context) {
return storeList != null ?
ListView.builder(
itemCount: storeList.length,
itemBuilder: (context, index) {
String imgPath = storeList[index].data['image'];
String merchantTextPath = storeList[index].data['name'];
String locationNamePath = storeList[index].data['location'];
return StoreCard(
etaText: time,
locationText: locationNamePath,
merchantText: storeTextPath,
assetImage: Image.network(imgPath),
function: (){},
);
})
: Center(child: CircularProgressIndicator());
}
}