Browse Source

Set altitude using config var

master
Adrian Short 11 years ago
parent
commit
d279b55eaa
1 changed files with 11 additions and 11 deletions
  1. +11
    -11
      app/helpers/posts_helper.rb

+ 11
- 11
app/helpers/posts_helper.rb View File

@@ -15,7 +15,7 @@ module PostsHelper
:geolocation => { :geolocation => {
:lat => post.lat, :lat => post.lat,
:lon => post.lon, :lon => post.lon,
:alt => 0
:alt => ENV['APOLLO_TRANSLATE_Z'] || 0
} }
}, },
:text => { :text => {
@@ -47,16 +47,16 @@ module PostsHelper
} }


# http://layar.com/documentation/browser/api/getpois-response/hotspots/ # http://layar.com/documentation/browser/api/getpois-response/hotspots/
res[:transform] = {
:rotate => {
:rel => true,
:axis => { :x => 0, :y => 0, :z => 1 },
:angle => 0
},
:translate => { :x => 0, :y =>0, :z => ENV['APOLLO_TRANSLATE_Z'] || 1.75 },
# :scale => calculate_scale(post.distance.to_i),
:distance => post.distance
}
# res[:transform] = {
# :rotate => {
# :rel => true,
# :axis => { :x => 0, :y => 0, :z => 1 },
# :angle => 0
# },
# :translate => { :x => 0, :y =>0, :z => ENV['APOLLO_TRANSLATE_Z'] || 1.75 },
# # :scale => calculate_scale(post.distance.to_i),
# :distance => post.distance
# }
end end
res res
end end


Loading…
Cancel
Save