From: Tom Hughes Date: Wed, 23 Dec 2020 15:24:10 +0000 (+0000) Subject: Merge remote-tracking branch 'upstream/pull/3016' X-Git-Tag: live~2753 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/f4885874f02bc197995dcc32dec1da04a0587791?ds=sidebyside;hp=-c Merge remote-tracking branch 'upstream/pull/3016' --- f4885874f02bc197995dcc32dec1da04a0587791 diff --combined lib/osm.rb index 51e98f4ae,daa15fe8b..b6dd64b99 --- a/lib/osm.rb +++ b/lib/osm.rb @@@ -5,6 -5,13 +5,6 @@@ module OS require "rexml/text" require "xml/libxml" - if defined?(SystemTimer) - Timer = SystemTimer - else - require "timeout" - Timer = Timeout - end - # The base class for API Errors. class APIError < RuntimeError def initialize(message = "Generic API Error") @@@ -371,12 -378,17 +371,17 @@@ end # and these two will give you the right points on your image. all the constants can be reduced to speed things up. FIXME + # If the bbox has no extent, return the centre of the image to avoid dividing by zero. def y(lat) + return @height / 2 if (@by - @ty).zero? + @height - ((ysheet(lat) - @ty) / (@by - @ty) * @height) end def x(lon) + return @width / 2 if (@bx - @tx).zero? + ((xsheet(lon) - @tx) / (@bx - @tx) * @width) end end