gpt4 book ai didi

firebase - 自动计算与存储在 Firebase Firestore Flutter 中的地理坐标数据的距离

转载 作者:行者123 更新时间:2023-12-04 08:57:50 25 4
gpt4 key购买 nike

我已在 firestore 数据库中存储了项目的纬度和经度(字段为:item_latitude 和 item_longitude)。因此,所有项目都有纬度和经度。我可以使用流来获取项目,例如:

  Stream<QuerySnapshot> getItems() async* {
yield* FirebaseFirestore.instance.collection("items").snapshots();
}
使用 StreamBuilder 或 FutureBuilder,我可以获得项目的各个属性,例如纬度和经度。 Geolocator 有一种计算距离的方法,这也是一种 future :
double distance = await geolocator.distanceBetween(lat, long, lat1, long1);
我能够获取用户的当前位置,在这种情况下它是 lat1,long1(这是一个单独的记录)。问题是:Strem getItems 获取纬度和经度流,对于每个项目,我需要引用当前位置计算其当前距离。这意味着,例如在 GridView 中遍历项目时,我需要计算并显示距离。
我以抽象的方式编写了这个问题,以便答案将解决如何基于同步数据流进行异步计算,以便在数据显示在页面的构建部分中时,计算是在外部完成的,因为不是,构建不会接受同步的异步计算。
我的尝试导致了以下结果: 第一次尝试:
child: StreamBuilder(
stream: FetchItems().getItems(),
builder: (context, snapshot) {
if (!snapshot.hasData) {
return Text("KE");
}
if (snapshot.hasData) {
DocumentSnapshot data = snapshot.data.docs[index];
double lat = data.data()[Str.ITEM_LATITUDE];
double long = data.data()[Str.ITEM_LATITUDE];
return
Text(getDistance(usersCurrentLocationLat,usersCurrentLocationLong,lat,long).toString());
//This fails and returns on the Text place holder the following: Instance of 'Future<dynamic>'
}
}),
我的第二次尝试如下:
child: StreamBuilder(
stream: FetchItems().getItems(),
builder: (context, snapshot) {
if (!snapshot.hasData) {
return Text("KE");
}
if (snapshot.hasData) {
DocumentSnapshot data = snapshot.data.docs[index];
double lat = data.data()[Str.ITEM_LATITUDE];
double long = data.data()[Str.ITEM_LATITUDE];
double x = getDistance(usersCurrentLocationLat,usersCurrentLocationLong,lat,long);
return Text(x.toString());
//This fails and gives erro: type 'Future<dynamic>' is not a subtype of type 'double'
}
}),
进一步调查表明,以下用于获取当前位置并且也在 iniState 中引用的方法实际上确实获取了值(假设 Gps 在场外启用):
  _getUserCurrentLocation() {
final Geolocator geolocator = Geolocator()..forceAndroidLocationManager;

geolocator.getCurrentPosition(desiredAccuracy: LocationAccuracy.best).then(
(Position position) {
setState(
() {
_currentPosition = position;
usersCurrentLocationLat = _currentPosition.latitude;
usersCurrentLocationLong = _currentPosition.longitude;
//a system print here returns current location as 0.3714267 32.6134379 (same for the
//StreamBuilder)
},
);
},
).catchError((e) {
print(e);
});
}
下面是计算距离的方法 - 使用提供的 Geolocator distanceBetween() 方法。
  getDistance(double lat, double long, double lat1, double long1) async {
return distance = await geolocator.distanceBetween(lat, long, lat1, long1);
}

@override
void initState() {
super.initState();
_getUserCurrentLocation();
}
我将如何遍历获得纬度和经度的项目,计算距离并将其显示在文本上?这是一个普遍的问题,可能的解决方案组合将非常受欢迎。请注意,在 StreamBuilder 中,我实际上可以使用以下命令打印以控制每个坐标:
print("FROM CURRENT LOCATION HERE ----" + usersCurrentLocationLat.toString() +"::::::::" +
usersCurrentLocationLong.toString());
print("FROM STREAM FROM DB SURE ----" + lat.toString() +"::::::::" + long.toString());
在控制台中为数据库中的所有项目打印为(一个示例):
I/flutter (30351): FROM CURRENT LOCATION HERE ----0.3732317::::::::32.6128083
I/flutter (30351): FROM STREAM FROM DB SURE ----2.12323::::::::2.12323
证明坐标是实际得到的。
主要错误:“Future”类型不是“double”类型的子类型,并且显示距离的文本被拉伸(stretch)为红色。如果可以,请指导最佳方法-它也可能对将来的某人有所帮助。

最佳答案

我的方法如下:
通过以下方式查询整个文档:

//This a synchronus operation    
final data = await Firestore.instance
.collection('collection_name')
.getDocuments();
然后将所有文档传递到一个列表中:
由于 DocumentSnapshotList<dynamic>
List doc = data.documents;
现在计算每个 LatLng 的距离在您的 firestore与当前位置 LatLng并继续将它附加到一个空的 list在迭代中可以在 gridView 中使用:
List distanceList=[]; //define and empty list
doc.forEach((e){
double lat=e.data[ITEM_LATITUDE]; //asuming ITEM_LATITUDE is the field name in firestore doc.
double lng=e.data[ITEM_LONGITUDE];//asuming ITEM_LONGITUDE is the field name in firestore doc.
distanceList.add(your distance calculating function); //call this inside an async function if you are using await;
});
而不是使用异步 gelocator.distance我在 dart 中写了一个函数使用“haversine”公式找到最短函数:
double calculateDistance (double lat1,double lng1,double lat2,double lng2){
double radEarth =6.3781*( pow(10.0,6.0));
double phi1= lat1*(pi/180);
double phi2 = lat2*(pi/180);

double delta1=(lat2-lat1)*(pi/180);
double delta2=(lng2-lng1)*(pi/180);

double cal1 = sin(delta1/2)*sin(delta1/2)+(cos(phi1)*cos(phi2)*sin(delta2/2)*sin(delta2/2));

double cal2= 2 * atan2((sqrt(cal1)), (sqrt(1-cal1)));
double distance =radEarth*cal2;

return (distance);

}
这是一个 synchronous function firestore 中的代码如下所示 doc.forEach();列表功能:
List distanceList; //define and empty list
doc.forEach((e){
double lat=e.data[ITEM_LATITUDE]; //asuming ITEM_LATITUDE is the field name in firestore doc.
double lng=e.data[ITEM_LONGITUDE];//asuming ITEM_LONGITUDE is the field name in firestore doc.
double distance = calculateDistance(currentLat,currentLng, lat,lng);
distanceList.add(distance);
});
//Now the distanceList would contain all the shortest distance between
// current LatLng and all the other LatLng in your firestore documents:
记得清空 distanceList在使用之前再次存储距离。

整个代码如下:
//Shortest Distance Function definition:
double calculateDistance (double lat1,double lng1,double lat2,double lng2){
double radEarth =6.3781*( pow(10.0,6.0));
double phi1= lat1*(pi/180);
double phi2 = lat2*(pi/180);

double delta1=(lat2-lat1)*(pi/180);
double delta2=(lng2-lng1)*(pi/180);

double cal1 = sin(delta1/2)*sin(delta1/2)+(cos(phi1)*cos(phi2)*sin(delta2/2)*sin(delta2/2));

double cal2= 2 * atan2((sqrt(cal1)), (sqrt(1-cal1)));
double distance =radEarth*cal2;

return (distance);

}

List distanceList; //list defination

// Call this function every time you want to calculate distance between currentLocation and all location in firestore.
void calculateDistanceAndStore(double currentLat, double currentLng) async{
distanceList=[];p;
final data = await Firestore.instance
.collection('collection_name')
.getDocuments();
doc.forEach((e){
double lat=e.data[ITEM_LATITUDE]; //asuming ITEM_LATITUDE is the field name in firestore doc.
double lng=e.data[ITEM_LONGITUDE];//asuming ITEM_LONGITUDE is the field name in firestore doc.
double distance = calculateDistance(currentLat,currentLng, lat,lng);
distanceList.add(distance);
});
}

关于firebase - 自动计算与存储在 Firebase Firestore Flutter 中的地理坐标数据的距离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63718203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com