X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/dc2a2c8ebd1a11e4a64555fda22c6859a51defff..6b0451124c0fe1cb7275ce973a069a125386558e:/lib/short_link.rb?ds=sidebyside diff --git a/lib/short_link.rb b/lib/short_link.rb index 69634cea5..ddf37b67a 100644 --- a/lib/short_link.rb +++ b/lib/short_link.rb @@ -55,7 +55,7 @@ module ShortLink # given a location and zoom, return a short string representing it. def self.encode(lon, lat, z) code = interleave_bits(((lon + 180.0) * 2**32 / 360.0).to_i, - ((lat + 90.0) * 2**32 / 180.0).to_i) + ((lat + 90.0) * 2**32 / 180.0).to_i) str = "" # add eight to the zoom level, which approximates an accuracy of # one pixel in a tile.