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