Settings and activity
25 results found
-
77 votes
Cedvdb supported this idea ·
-
832 votes
Cedvdb supported this idea ·
-
149 votes
Cedvdb supported this idea ·
-
121 votes
Cedvdb supported this idea ·
An error occurred while saving the comment -
326 votes
We are nearly ready to accept developers who are interested in custom authentication (external identity provider). Please fill out https://forms.gle/pLLYMFhGcrziqT1N8 and we can notify you if you're selected to join the private preview.
Please note that full regionalization for Firebase Authentication is separate, and is still expected to reach preview in Q4 this year.
Cedvdb supported this idea ·
@frank
The documented solution has the following issues:
- it is slow, this could be executed in a single query instead of 9
- it requires multiple part of the application to be aware of the geohash algorithm used, eg, the server and clients may be written in different languages, geofire libraries used on both sides must have the same algorithm.
- I would also like to keep my models free of Firebases concerns, so that the documents are valid json values (no GeoPoint inside the model or Timestamp).
The API I'd hope for is something like:
collectionRef.within(
radius: 10000,
center: { lat: 40, lon: 50 },
latitudeFieldPath: 'position.latitude',
longitudeFieldPath: 'position.longitude',
)