GeoRSS aggregator and Layar augmented reality server
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

11 satır
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