Flutter Firestore Geo 查询距我所在位置一定距离

Flutter Firestore Geo query for certain distance from my location

我将我的用户数据存储为 GeoPoint 数据类型,包括他们在我的 firebase 数据库中的实时位置。 现在我需要 select 并从距离我的位置一定距离的数据库中获取用户。 我使用这行代码来检索我的位置:

position = await Geolocator.getCurrentPosition(desiredAccuracy: LocationAccuracy.high);

不,我需要在 flutter 中使用 firebase 查询来检索周围 500 米的用户 me.It 意味着我应该检索距离 firebase 数据库 500 米的所有用户。 我该怎么做?

最后我找到了解决方案:

position = await Geolocator.getCurrentPosition(desiredAccuracy: LocationAccuracy.high);
await getGenderIcons(context);
QuerySnapshot querySnapshot;
double lat = 0.0144927536231884;
double lon = 0.0181818181818182;
double distance = 1000*0.000621371;
double lowerLat = position.latitude - (lat * distance);
double lowerLon = position.longitude - (lon * distance);
double greaterLat = position.latitude + (lat * distance);
double greaterLon = position.longitude + (lon * distance);
GeoPoint lesserGeopoint = GeoPoint(lowerLat,lowerLon);
GeoPoint greaterGeopoint = GeoPoint(greaterLat,greaterLon);
querySnapshot = await usersRef
    .where("livelocation", isGreaterThan: lesserGeopoint)
    .where("livelocation", isLessThan: greaterGeopoint)
    .limit(100)
    .get();