You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you try to query documents around [pointLatitude, pointLongitude] with radiusInM = 0 the query returns unexpected documents totally out of range(and not because of Geohashing approximations).
The radiusInM = 0 may happen if you're querying inside a loop, which is not so uncommon.
Would return the documents within the given radius around a center point [pointLatitude, pointLongitude].
Actual behavior
Returns many other documents completely out of range and may result in high costs depending on your application.
If you have documents around the given center but away from the radius, the query may still return them.
If I query for the same center but with a slightly bigger radius the query works.
The text was updated successfully, but these errors were encountered:
Version info
Firebase: V8 Modular (using cloud functions)
GeoFire: V6.0.0
Test case
If you try to query documents around
[pointLatitude, pointLongitude]
withradiusInM = 0
the query returns unexpected documents totally out of range(and not because of Geohashing approximations).The
radiusInM = 0
may happen if you're querying inside a loop, which is not so uncommon.Steps to reproduce
Use
geofire.geohashQueryBounds(center, radiusInM)
as specified in the Firebase documentation for Firestore and assignradiusInM = 0
.Expected behavior
Would return the documents within the given radius around a center point
[pointLatitude, pointLongitude]
.Actual behavior
Returns many other documents completely out of range and may result in high costs depending on your application.
If you have documents around the given center but away from the radius, the query may still return them.
If I query for the same center but with a slightly bigger radius the query works.
The text was updated successfully, but these errors were encountered: