+ function getTileURL( bounds ) {
+ var res = this.map.getResolution();
+ var x = Math.round ((bounds.left - this.maxExtent.left) / (res * this.tileSize.w));
+ var y = Math.round ((this.maxExtent.top - bounds.top) / (res * this.tileSize.h));
+ var z = this.map.getZoom();
+ return this.url + z + "/" + x + "/" + y + "." + this.type;
+ }
+
+ function updateLocation() {
+ var lonlat = map.getCenter();
+
+ var lon_deg = (lonlat.lon / 20037508.34) * 180;
+ var lat_deg = (lonlat.lat / 20037508.34) * 180;
+ var PI = 3.14159265358979323846;
+ lat_deg = 180/PI * (2 * Math.atan(Math.exp(lat_deg * PI / 180)) - PI / 2);
+ var zoom = map.getZoom();
+
+ updatelinks(lon_deg,lat_deg,zoom);
+ }
+