Explorar el Código

Add layer_id param

master
Adrian Short hace 11 años
padre
commit
dab7c7ae44
Se han modificado 1 ficheros con 6 adiciones y 6 borrados
  1. +6
    -6
      app/controllers/posts_controller.rb

+ 6
- 6
app/controllers/posts_controller.rb Ver fichero

@@ -2,13 +2,13 @@ class PostsController < ApplicationController
include PostsHelper
def near
@posts = Post.near(params[:lat].to_f, params[:lon].to_f, params[:radius].to_f)
@posts = Post.near(params[:lat].to_f, params[:lon].to_f, params[:radius].to_f, params[:layer_id])

ErrorLog.create(
:ts => Time.now,
:params => params,
:pois_returned => @posts.size
)
# ErrorLog.create(
# :ts => Time.now,
# :params => params,
# :pois_returned => @posts.size
# )

layar_response = {
:layer => 'hyparlocal',


Cargando…
Cancelar
Guardar