Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

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