Exemple #1
0
function mergLat($lat, $zoom)
{
    $f = GEO_TILE_SIZE * pow(2, $zoom);
    return (Geo::mercatorLat($lat) + M_PI) / GEO_2_PI * $f;
}