TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

GeoFire: Location Queries for Fun and Profit

35 pointsby shiftbover 11 years ago

5 comments

kav-yaover 11 years ago
(I worked on the GeoFire library) GeoFire converts the latitude-longitude coordinates of a data point to its geohash, and stores the data in Firebase at the geohash. The properties of geohashes and Firebase play nicely together to make it easy to implement localized search and location querying.
评论 #6458024 未加载
systemizerover 11 years ago
Like the idea of using Geohashes to quickly search for "near" objects and then using the client's processing to extract lat/lngs. I've setup postgis before and it was more of a hassle than I wanted it to be. This alleviates some of the pain :)
poof131over 11 years ago
Spent the past month putting together an app with Angular, Firebase, and Geo. All three play together very well and have significantly reduced the dev time. Thinking about how much more work I would still have to do without Firebase and Geo gives me shivers.
raulzito234over 11 years ago
Very good!. It's impressive how much work you take out of the people that want to develop new Applications/Websites/Services! This is really nice!
评论 #6460689 未加载
kombeneahover 11 years ago
I like this, geohashing is a nice way to go. And true, I've played around with PostGIS too and the pain wasn't unnoticeable.