GeoRSS aggregator and Layar augmented reality server
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

posts_controller.rb 765 B

il y a 11 ans
il y a 11 ans
12345678910111213141516171819202122232425262728
  1. class PostsController < ApplicationController
  2. include PostsHelper
  3. def near
  4. @posts = Post.near(params[:lat].to_f, params[:lon].to_f, params[:radius].to_f, params[:layer_id])
  5. # ErrorLog.create(
  6. # :ts => Time.now,
  7. # :params => params,
  8. # :pois_returned => @posts.size
  9. # )
  10. @layer = Layer.find(params[:layer_id])
  11. layar_response = {
  12. :layer => @layer.layar_name,
  13. :hotspots => @posts.collect { |p| post_to_poi(p) },
  14. :errorCode => 0, # OK
  15. :errorString => "OK",
  16. :radius => params[:radius].to_f
  17. }
  18. respond_to do |format|
  19. format.html # near.html.erb
  20. format.json { render json: @posts }
  21. format.layar { render json: layar_response }
  22. end
  23. end
  24. end