GeoRSS aggregator and Layar augmented reality server
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

14 行
253 B

  1. class Post < ActiveRecord::Base
  2. belongs_to :feed
  3. EARTH_RADIUS_M = 6378000
  4. def self.near(lat, lng, radius_m)
  5. all(
  6. :loc => {
  7. '$nearSphere' => [ lng, lat ],
  8. '$maxDistance' => radius_m / EARTH_RADIUS_M
  9. })
  10. end
  11. end