-
The `data` function returns only the `d` field of the document. There seems to be no way of getting the geopoint of the document or am I missing something?
-
I know this is related to https://github.com/geofirestore/geofirestore-js/issues/78 but is there no way around this? How would I achieve something similar?
```
this.queueRef
.where('d…
ghost updated
5 years ago
-
I get this error when I try to do `onSnapshot` on a `GeoQuery`:
`t.docChanges is not a function. (In 't.docChanges()', 't.docChanges' is an instance of Array)`
Here's my code:
```
let geo…
-
Hi,
I have a doubt, if I have a document in firestore introduced with a geofirestore, if I want to make a query that is NOT geospatial, can not I consult with the methods provided by firestore?
I al…
-
Following code returns all the documents
```
const db = admin.firestore();
const collectionRef = db.collection('documents');
const geoFirestore = new GeoFirestore(collectionRef);
const geoQuery…
-
Hello Team,
I have a little problem when I compile my code to deploy to firebase :
`GeoFirestoreTypes.ts[39, 17]: Shadowed name: 'DocumentChange'
GeoFirestoreTypes.ts[48, 17]: Shadowed name: 'Q…
-
Great library! I used to use the distance helper function in 2.x, and I'm wondering if there's any way to access it in 3.x.
For me it was useful to display a user's distance from a location immedia…
-
When a "near" query is used with a center and radius, would be ideal to add an option to sort results by distance from the center. Right now the distance field is placed on the docs that come back, bu…
-
Hi, reading the documentation it looks like the only way to add a document to a collection with a custom "coordinates" key is the GeoCollectionReference.add() method, but in my application i need to s…
-
Hello team,
First of all, thanks for this great job :)
I've seen the tag 2.4.0 allow to add a custom query with the QueryCriteria but I didn't find it on the tag 3.0.0.
My goal is to limit th…