GeoFlutterFire icon indicating copy to clipboard operation
GeoFlutterFire copied to clipboard

How to sort in order of closest?

Open son opened this issue 3 years ago • 2 comments

Thank you for the wonderful package. How can I sort and query the data in order of closeness?

son avatar Mar 21 '22 14:03 son

If you want to have the documents sorted by distance, you have to do that after the query. To get the distance of the coordinates from a given point, you can use the haversine formula.

LogicNg avatar Jun 27 '22 01:06 LogicNg

Things get more complicated if you want to sort them with geohashes only. Nearby places have similar prefixes. The longer a shared prefix is, the closer the two places are. Two points can be very close but have no shared prefix. That means you have to run multiple queries, one for each sector around the center.

LogicNg avatar Jun 27 '22 01:06 LogicNg