map tile

  1. R

    Android Question Get Latitude and Longitude from map tile (x, y, zoom)

    I can see the code to get this on this wiki page: https://wiki.openstreetmap.org/wiki/Slippy_map_tilenames#ECMAScript_.28JavaScript.2FActionScript.2C_etc..29 eg in Python: Tile numbers to lon./lat. import math def num2deg(xtile, ytile, zoom): n = 2.0 ** zoom lon_deg = xtile / n * 360.0 - 180.0...
Top