GeoRSS aggregator and Layar augmented reality server
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

posts_helper.rb 337 B

12345678910111213141516
  1. module PostsHelper
  2. def post_to_poi(post)
  3. # http://layar.com/documentation/browser/api/getpois-response/
  4. {
  5. :id => post._id,
  6. :anchor => {
  7. :geolocation => {
  8. :lat => post.loc['lat'],
  9. :lon => post.loc['lng'],
  10. :alt => 0
  11. }
  12. },
  13. :title => post.title
  14. }
  15. end
  16. end