]> git.openstreetmap.org Git - rails.git/commitdiff
Make OSM::GreatCircle#bounds return a BoundingBox object
authorTom Hughes <tom@compton.nu>
Sun, 4 Feb 2018 15:54:13 +0000 (15:54 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 4 Mar 2018 09:59:23 +0000 (09:59 +0000)
lib/osm.rb

index 40027991a036ea7611bda63dbba35b357772ebcb..66428c13cdca3ef28935f9fe763d455309f74e92 100644 (file)
@@ -480,7 +480,7 @@ module OSM
       minlon = [(@lon - lonradius) * 180 / PI, -180].max
       maxlon = [(@lon + lonradius) * 180 / PI, 180].min
 
-      { :minlat => minlat, :maxlat => maxlat, :minlon => minlon, :maxlon => maxlon }
+      BoundingBox.new(minlon, minlat, maxlon, maxlat)
     end
 
     # get the SQL to use to calculate distance