2016-05-27 18:19:47 +08:00
|
|
|
-- Maximum supported zoom level
|
|
|
|
CREATE OR REPLACE FUNCTION _CDB_MaxSupportedZoom()
|
|
|
|
RETURNS int
|
|
|
|
LANGUAGE SQL
|
|
|
|
IMMUTABLE
|
|
|
|
AS $$
|
|
|
|
-- The maximum zoom level has to be limited for various reasons,
|
|
|
|
-- e.g. zoom levels greater than 31 would require tile coordinates
|
|
|
|
-- that would not fit in an INTEGER (which is signed, 32 bits long).
|
|
|
|
-- We'll choose 20 as a limit which is safe also when the JavaScript shift
|
|
|
|
-- operator (<<) is used for computing powers of two.
|
|
|
|
SELECT 29;
|
|
|
|
$$;
|
|
|
|
|
2016-02-09 14:45:27 +08:00
|
|
|
CREATE OR REPLACE FUNCTION cartodb.CDB_ZoomFromScale(scaleDenominator numeric)
|
|
|
|
RETURNS int
|
|
|
|
LANGUAGE SQL
|
|
|
|
IMMUTABLE
|
|
|
|
AS $$
|
2016-05-27 21:10:20 +08:00
|
|
|
SELECT
|
|
|
|
CASE
|
|
|
|
WHEN scaleDenominator > 600000000 THEN
|
|
|
|
-- Scale is smaller than zoom level 0
|
|
|
|
NULL
|
|
|
|
WHEN scaleDenominator = 0 THEN
|
|
|
|
-- Actual zoom level would be infinite
|
|
|
|
_CDB_MaxSupportedZoom()
|
|
|
|
ELSE
|
|
|
|
CAST (
|
|
|
|
LEAST(
|
|
|
|
ROUND(LOG(2, 559082264.028/scaleDenominator)),
|
|
|
|
_CDB_MaxSupportedZoom()
|
|
|
|
)
|
|
|
|
AS INTEGER)
|
|
|
|
END;
|
2016-02-09 14:45:27 +08:00
|
|
|
$$;
|