Java tutorial
//package com.java2s; public class Main { public static double tile2lon(int x, int aZoom) { return (x / Math.pow(2.0, aZoom) * 360.0) - 180; } }