我有一个要检索的位置列表,并显示在Listview Builder中。
每个位置都有一个纬度和经度值。
现在,我正尝试使用GeoLocator插件(https://pub.dartlang.org/packages/geolocator)将“距离”字段包括到列表视图中-通过具有“查找最近的”按钮来获取用户位置,然后使用用户的纬度来计算距离/ lon和每个位置的经/纬度。
由于“ GeoLocator计算距离方法”是异步的,因此无法插入Geolocator()。distanceBetween(userLat, userLon,storeLat,storeLon)直接添加到小部件中。
问题: 那么,当用户单击“查找最近”按钮时,如何通过getDistance方法传递每个Listview项并返回结果呢?
简化代码:
Future<List> getdata() async {
final response = await http.get(getStoreLocations);
return json.decode(response.body);
}
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(title: new Text("Location"),),
body: new FutureBuilder<List>(
future: getdata(),
builder: (context, snapshot) {
if (snapshot.hasError) print(snapshot.error);
return snapshot.hasData
? new BrowseStoreLocation(
list: snapshot.data,)
: new Center(
child: new CircularProgressIndicator(),
);
},
),
);
}
}
GeoLocator获取用户位置方法:
getLocation () async {
Position position = await Geolocator().getCurrentPosition(LocationAccuracy.best);
userLat = position.latitude;
userLon = position.longitude;
setState(() {
});
}
GeoLocator计算距离方法:
getDistance()async {
double distanceInMeters = await Geolocator().distanceBetween(userLat,
userLon, storeLat, storeLon);
distance = distanceInMeters/1000;
}
我尝试通过设置变量进行实验。打印显示所有项目的storeLat和storeLon值,但仅计算并返回最后一个列表项。
String storeLat = "";
String storeLon = "";
getDistance(storeLat,storeLon)async {
double distanceInMeters = await Geolocator().distanceBetween(userLat, userLon, double.parse(storeLat), double.parse(storeLon));
distance = distanceInMeters/1000;
setState(() {
});
}
new ListView.builder(
itemCount: widget.list == null ? 0 : widget.list.length,
itemBuilder: (context, i) {
storeLat = widget.list[i]['latitude'];
storeLon = widget.list[i]['longitude'];
print(storeLon+storeLat);
return Container(
child: Column(
children: <Widget>[
new Text(distance.toString())
],
),
答案 0 :(得分:0)
为此,您必须在FutureBuilder内部使用ListView.builder,然后在其中调用方法getDistance
。
ListView.builder(
itemCount: locationsList.length,
itemBuilder: (context, position) {
final current = locationsList[position];
return FutureBuilder<String>(
future: getDistance(current.latitude, current.longitude)
.then((location) => location.toString()),
builder: (context, snapshot) {
return Container(
child: Column(
children: <Widget>[new Text(snapshot.data)],
),
);
});
});