소스 검색

Scale POI icon size according to distance from user

master
Adrian Short 11 년 전
부모
커밋
239f13d288
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      app/helpers/posts_helper.rb

+ 5
- 1
app/helpers/posts_helper.rb 파일 보기

@@ -8,6 +8,10 @@ module PostsHelper
image_url = subscription.layer.icon_url
end

scale = 1.0
scale = 2.0 if post.distance < 50
scale = post.distance / 1000 if post.distance > 1000

res = {
:id => post.id,
:imageURL => image_url,
@@ -50,7 +54,7 @@ module PostsHelper
:angle => 0
},
:translate => { :x => 0, :y => -0.075, :z => ENV['APOLLO_TRANSLATE_Z'] || 1.75 },
:scale => 1.0
:scale => scale
}
end
res


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