]> git.openstreetmap.org Git - rails.git/blobdiff - lib/quad_tile.rb
Merge branch 'master' into openstreetbugs
[rails.git] / lib / quad_tile.rb
index 1f7e6e501148a241be67d290a0d1d52bf28f3d2c..70012597b65298b9b9bfeb6c0027145c62865775 100644 (file)
@@ -3,8 +3,8 @@ module QuadTile
     require "quad_tile/quad_tile_so"
   rescue MissingSourceFile
     def self.tile_for_point(lat, lon)
-      x = ((lon + 180) * 65535 / 360).round
-      y = ((lat + 90) * 65535 / 180).round
+      x = ((lon.to_f + 180) * 65535 / 360).round
+      y = ((lat.to_f + 90) * 65535 / 180).round
 
       return tile_for_xy(x, y)
     end