소스 검색

Add layer_id param

master
Adrian Short 11 년 전
부모
커밋
dab7c7ae44
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. +6
    -6
      app/controllers/posts_controller.rb

+ 6
- 6
app/controllers/posts_controller.rb 파일 보기

@@ -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',


불러오는 중...
취소
저장