在我的应用程序中,我想发送(可能通过查询)一个用户的地理点(userLocation),他的汽车坏了,他被困了。作为回应,我想找回所有愿意联系被困用户的维修店。每个 Repair_Shop firestore 文档都包含他们的地理点 (shopLocation) 和一个以公里为单位的数字 serviceDistance,这是他们的服务半径 (serviceRadius)。我想要一个满足条件 serviceDistance <= |userLocation - shopLocation| 的 Repair_Shop 集合中的所有文档的响应。
我已通读 GeoFirestore 文档,但不太确定如何实施。自然无法在前端进行计算。但是我应该发送什么作为查询,如果可能的话,我应该在 Firestore API 上做什么,以便获得预期的文档快照?
谢谢。