-
Is there a difference if I delete a location not with `geoFire.remove("some_key")` but by using the standard firebase command `firebase.database().ref('someKey').remove();`? It seems to work fine, jus…
-
Im getting duplicates from this query, any ideas why ?
```
let geoQuery = this.geoFire.query({
center: [this.lat, this.lng],
radius: 1.609 //kilometers
});
geoQuery.on("ready", function(…
-
Firebase version: 3.6.1
GeoFire version: 4.1.1
db structure:
```
db
|-someData
|-key
|-activeUsers
|- key
```
My app needs to delete a key in someData if the user closes a proj…
-
Hi
I have a really simple database with 3 location objects:
My rules are the following:
And I'm trying to obtain the bars within a radius. Currently all the bars are within the radius.
o…
-
If you try to deserialize GeoFire, an error is thrown by Jackson because no default constructor was provided.
-
I cant seem to integrate this into an Ionic 2 app using webpack. is there any resources available for using it within Ionic ?
-
Hi,
I setup my circle query like so
`circleQuery = geoFire.queryAtLocation(currentLocation, withRadius: radius)`
Then on a location listener I change the center:
`circleQuery.center = currentLocatio…
-
I am using **geoQuery with React using redux-observable**
I was wondering how do I use **plain geofire-js** with multiple observables (from multiple geoquery) and then use something like a flatMap …
-
I am using a node.js server to handle push notifications. I would like to geotarget notifications, I was wondering if GeoFire is working with the Firebase-admin SDK. It doesn't seem to be working with…
-
Let's say I have a large number of users or items I want to go over. I obviously don't want to download the entire list and parse it (I could but that's bad practice for large scale lists).
How wou…