Created
April 22, 2010 03:52
-
-
Save dust3d/374792 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo | |
def self.nearby(lat, lon) | |
Place.all(:origin => [lat,lon], :within => '.5') | |
end | |
end | |
#then you can call this with | |
Place.nearby(session[:user_lat], session[:user_lon]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment