CloseBuy-v2 / CloseBuy

CloseBuy Mobile App
0 stars 1 forks source link

Location Map card #10

Open c3x04 opened 8 years ago

c3x04 commented 8 years ago
c3x04 commented 8 years ago

http://wiki.openstreetmap.org/wiki/Slippy_map_tilenames#ECMAScript_.28JavaScript.2FActionScript.2C_etc..29

c3x04 commented 8 years ago

http://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png

c3x04 commented 8 years ago
function long2x(lon,zoom) { 
    return (Math.floor((lon+180)/360*Math.pow(2,zoom))); 
}
function lat2y(lat,zoom)  { 
    return (Math.floor((1-Math.log(Math.tan(lat*Math.PI/180) + 1/Math.cos(lat*Math.PI/180))/Math.PI)/2 *Math.pow(2,zoom))); 
}