- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已在 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
证明坐标是实际得到的。
最佳答案
我的方法如下:
通过以下方式查询整个文档:
//This a synchronus operation
final data = await Firestore.instance
.collection('collection_name')
.getDocuments();
然后将所有文档传递到一个列表中:
DocumentSnapshot
是
List<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/
我想做的是让 JTextPane 在 JPanel 中占用尽可能多的空间。对于我使用的 UpdateInfoPanel: public class UpdateInfoPanel extends JP
我在 JPanel 中有一个 JTextArea,我想将其与 JScrollPane 一起使用。我正在使用 GridBagLayout。当我运行它时,框架似乎为 JScrollPane 腾出了空间,但
我想在 xcode 中实现以下功能。 我有一个 View Controller 。在这个 UIViewController 中,我有一个 UITabBar。它们下面是一个 UIView。将 UITab
有谁知道Firebird 2.5有没有类似于SQL中“STUFF”函数的功能? 我有一个包含父用户记录的表,另一个表包含与父相关的子用户记录。我希望能够提取用户拥有的“ROLES”的逗号分隔字符串,而
我想使用 JSON 作为 mirth channel 的输入和输出,例如详细信息保存在数据库中或创建 HL7 消息。 简而言之,输入为 JSON 解析它并输出为任何格式。 最佳答案 var objec
通常我会使用 R 并执行 merge.by,但这个文件似乎太大了,部门中的任何一台计算机都无法处理它! (任何从事遗传学工作的人的附加信息)本质上,插补似乎删除了 snp ID 的 rs 数字,我只剩
我有一个以前可能被问过的问题,但我很难找到正确的描述。我希望有人能帮助我。 在下面的代码中,我设置了varprice,我想添加javascript变量accu_id以通过rails在我的数据库中查找记
我有一个简单的 SVG 文件,在 Firefox 中可以正常查看 - 它的一些包装文本使用 foreignObject 包含一些 HTML - 文本包装在 div 中:
所以我正在为学校编写一个 Ruby 程序,如果某个值是 1 或 3,则将 bool 值更改为 true,如果是 0 或 2,则更改为 false。由于我有 Java 背景,所以我认为这段代码应该有效:
我做了什么: 我在这些账户之间创建了 VPC 对等连接 互联网网关也连接到每个 VPC 还配置了路由表(以允许来自双方的流量) 情况1: 当这两个 VPC 在同一个账户中时,我成功测试了从另一个 La
我有一个名为 contacts 的表: user_id contact_id 10294 10295 10294 10293 10293 10294 102
我正在使用 Magento 中的新模板。为避免重复代码,我想为每个产品预览使用相同的子模板。 特别是我做了这样一个展示: $products = Mage::getModel('catalog/pro
“for”是否总是检查协议(protocol)中定义的每个函数中第一个参数的类型? 编辑(改写): 当协议(protocol)方法只有一个参数时,根据该单个参数的类型(直接或任意)找到实现。当协议(p
我想从我的 PHP 代码中调用 JavaScript 函数。我通过使用以下方法实现了这一点: echo ' drawChart($id); '; 这工作正常,但我想从我的 PHP 代码中获取数据,我使
这个问题已经有答案了: Event binding on dynamically created elements? (23 个回答) 已关闭 5 年前。 我有一个动态表单,我想在其中附加一些其他 h
我正在尝试找到一种解决方案,以在 componentDidMount 中的映射项上使用 setState。 我正在使用 GraphQL连同 Gatsby返回许多 data 项目,但要求在特定的 pat
我在 ScrollView 中有一个 View 。只要用户按住该 View ,我想每 80 毫秒调用一次方法。这是我已经实现的: final Runnable vibrate = new Runnab
我用 jni 开发了一个 android 应用程序。我在 GetStringUTFChars 的 dvmDecodeIndirectRef 中得到了一个 dvmabort。我只中止了一次。 为什么会这
当我到达我的 Activity 时,我调用 FragmentPagerAdapter 来处理我的不同选项卡。在我的一个选项卡中,我想显示一个 RecyclerView,但他从未出现过,有了断点,我看到
当我按下 Activity 中的按钮时,会弹出一个 DialogFragment。在对话框 fragment 中,有一个看起来像普通 ListView 的 RecyclerView。 我想要的行为是当
我是一名优秀的程序员,十分优秀!