UNPKG

kea-geo

Version:

Collection of geo related utility

6 lines (4 loc) 228 B
// source: https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames#ECMAScript_.28JavaScript.2FActionScript.2C_etc..29 module.exports = function (lng, zoom) { return (Math.floor((lng + 180) / 360 * Math.pow(2, zoom))) }