]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/concerns/geo_record.rb
Merge pull request #2485 from mmd-osm/patch/json2
[rails.git] / app / models / concerns / geo_record.rb
index 06049c2951b25876999cc7e3ee0fc070bacd97e6..447ee19df61050e83f229619db8968351498a62a 100644 (file)
@@ -1,5 +1,3 @@
-require "delegate"
-
 module GeoRecord
   extend ActiveSupport::Concern
 
@@ -14,6 +12,10 @@ module GeoRecord
     def to_s
       format("%.7f", self)
     end
+
+    def as_json(_)
+      format("%.7f", self).to_f
+    end
   end
 
   # This scaling factor is used to convert between the float lat/lon that is
@@ -22,7 +24,7 @@ module GeoRecord
   SCALE = 10000000
 
   included do
-    scope :bbox, ->(bbox) { where(OSM.sql_for_area(bbox)) }
+    scope :bbox, ->(bbox) { where(OSM.sql_for_area(bbox, "#{table_name}.")) }
     before_save :update_tile
   end