Skip to content

Instantly share code, notes, and snippets.

@drale2k
Created February 12, 2012 18:56
Show Gist options
  • Save drale2k/1810253 to your computer and use it in GitHub Desktop.
Save drale2k/1810253 to your computer and use it in GitHub Desktop.
def index
if params[:near]
@locations = Location.near(
params[:near], # Latitude, Longitude
params[:radius] ? params[:radius].to_i : 10,
:units => :km
)
else
@locations = Location.all
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment