GeoRSS aggregator and Layar augmented reality server
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

11 righe
262 B

  1. class PostsController < ApplicationController
  2. def near
  3. @posts = Post.near(params[:lat].to_f, params[:lng].to_f, params[:radius].to_f)
  4. respond_to do |format|
  5. format.html # near.html.erb
  6. format.json { render json: @posts }
  7. end
  8. end
  9. end