]> git.openstreetmap.org Git - rails.git/blob - public/javascripts/site.js
Merge 16355:16480 from trunk.
[rails.git] / public / javascripts / site.js
1 /*
2  * Called as the user scrolls/zooms around to aniplate hrefs of the
3  * view tab and various other links
4  */
5 function updatelinks(lon,lat,zoom,layers,minlon,minlat,maxlon,maxlat,objtype,objid) {
6   var decimals = Math.pow(10, Math.floor(zoom/3));
7   var node;
8
9   lat = Math.round(lat * decimals) / decimals;
10   lon = Math.round(lon * decimals) / decimals;
11
12   node = document.getElementById("permalinkanchor");
13   if (node) {
14     var args = getArgs(node.href);
15     args["lat"] = lat;
16     args["lon"] = lon;
17     args["zoom"] = zoom;
18     if (layers) {
19       args["layers"] = layers;
20     }
21     if (objtype && objid) {
22       args[objtype] = objid;
23     }
24     node.href = setArgs(node.href, args);
25   }
26
27   node = document.getElementById("viewanchor");
28   if (node) {
29     var args = getArgs(node.href);
30     args["lat"] = lat;
31     args["lon"] = lon;
32     args["zoom"] = zoom;
33     if (layers) {
34       args["layers"] = layers;
35     }
36     node.href = setArgs(node.href, args);
37   }
38
39   node = document.getElementById("exportanchor");
40   if (node) {
41     var args = getArgs(node.href);
42     args["lat"] = lat;
43     args["lon"] = lon;
44     args["zoom"] = zoom;
45     if (layers) {
46       args["layers"] = layers;
47     }
48     node.href = setArgs(node.href, args);
49   }
50
51   node = document.getElementById("editanchor");
52   if (node) {
53     if (zoom >= 13) {
54       var args = new Object();
55       args.lat = lat;
56       args.lon = lon;
57       args.zoom = zoom;
58       if (objtype && objid) {
59         args[objtype] = objid;
60       }
61       node.href = setArgs("/edit", args);
62       node.style.fontStyle = 'normal';
63     } else {
64       node.href = 'javascript:alert("zoom in to edit map");';
65       node.style.fontStyle = 'italic';
66     }
67   }
68   
69   node = document.getElementById("historyanchor");
70   if (node) {
71     if (zoom >= 11) {
72       var args = new Object();
73       //set bbox param from 'extents' object
74       if (typeof minlon == "number" &&
75           typeof minlat == "number" &&
76           typeof maxlon == "number" &&
77           typeof maxlat == "number") {
78       
79         minlon = Math.round(minlon * decimals) / decimals;
80         minlat = Math.round(minlat * decimals) / decimals;
81         maxlon = Math.round(maxlon * decimals) / decimals;
82         maxlat = Math.round(maxlat * decimals) / decimals;
83         args.bbox = minlon + "," + minlat + "," + maxlon + "," + maxlat;
84       }
85       
86       node.href = setArgs("/history", args);
87       node.style.fontStyle = 'normal';
88     } else {
89       node.href = 'javascript:alert("zoom in to see editing history");';
90       node.style.fontStyle = 'italic';
91     }
92   }
93
94   node = document.getElementById("shortlinkanchor");
95   if (node) {
96     var args = getArgs(node.href);
97     var code = makeShortCode(lat, lon, zoom);
98     var prefix = shortlinkPrefix();
99
100     // Add ?{node,way,relation}=id to the arguments
101     if (objtype && objid) {
102       args[objtype] = objid;
103     }
104
105     // This is a hack to omit the default mapnik layer (B000FTF) from
106     // the shortlink. B000FTFT is then the "Object" layer which we get
107     // on /?{node,way,relation}=id
108     if (layers && (layers != "B000FTF") && (layers != "B000FTFT")) {
109       args["layers"] = layers;
110     }
111
112     // Here we're assuming that all parameters but ?layers= and
113     // ?{node,way,relation}= can be safely omitted from the shortlink
114     // which encodes lat/lon/zoom. If new URL parameters are added to
115     // the main slippy map this needs to be changed.
116     if (args["layers"] || args[objtype]) {
117       node.href = setArgs(prefix + "/go/" + code, args);
118     } else {
119       node.href = prefix + "/go/" + code;
120     }
121   }
122 }
123
124 /*
125  * Get the URL prefix to use for a short link
126  */
127 function shortlinkPrefix() {
128   if (window.location.hostname.match(/^www\.openstreetmap\.org/i)) {
129     return "http://osm.org";
130   } else {
131     return "";     
132   }
133 }
134
135 /*
136  * Called to get the arguments from a URL as a hash.
137  */
138 function getArgs(url) {
139   var args = new Object();
140   var querystart = url.indexOf("?");
141
142   if (querystart >= 0) {
143      var querystring = url.substring(querystart + 1);
144      var queryitems = querystring.split("&");
145
146      for (var i = 0; i < queryitems.length; i++) {
147         if (match = queryitems[i].match(/^(.*)=(.*)$/)) {
148            args[unescape(match[1])] = unescape(match[2]);
149         } else {
150            args[unescape(queryitems[i])] = null
151         }
152      }
153   }
154
155   return args;
156 }
157
158 /*
159  * Called to set the arguments on a URL from the given hash.
160  */
161 function setArgs(url, args) {
162    var queryitems = new Array();
163
164    for (arg in args)
165    {
166       if (args[arg] == null) {
167          queryitems.push(escape(arg));
168       } else {
169          queryitems.push(escape(arg) + "=" + escape(args[arg]));
170       }
171    }
172
173    return url.replace(/\?.*$/, "") + "?" + queryitems.join("&");
174 }
175
176 /*
177  * Called to get a CSS property for an element.
178  */
179 function getStyle(el, property) {
180   var style;
181
182   if (el.currentStyle) {
183     style = el.currentStyle[property];
184   } else if( window.getComputedStyle ) {
185     style = document.defaultView.getComputedStyle(el,null).getPropertyValue(property);
186   } else {
187     style = el.style[property];
188   }
189
190   return style;
191 }
192
193 /*
194  * Called to interpolate JavaScript variables in strings using a
195  * similar syntax to rails I18n string interpolation - the only
196  * difference is that [[foo]] is the placeholder syntax instead
197  * of {{foo}} which allows the same string to be processed by both
198  * rails and then later by javascript.
199  */
200 function i18n(string, keys) {
201   for (var key in keys) {
202     var re_key = '\\[\\[' + key + '\\]\\]';
203     var re = new RegExp(re_key, "g");
204       
205     string = string.replace(re, keys[key]);
206   }
207    
208   return string;
209
210
211 function makeShortCode(lat, lon, zoom) {
212     char_array = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_@";
213     var x = Math.round((lon + 180.0) * ((1 << 30) / 90.0));
214     var y = Math.round((lat +  90.0) * ((1 << 30) / 45.0));
215     // hack around the fact that JS apparently only allows 53-bit integers?!?
216     // note that, although this reduces the accuracy of the process, it's fine for
217     // z18 so we don't need to care for now.
218     var c1 = 0, c2 = 0;
219     for (var i = 31; i > 16; --i) {
220         c1 = (c1 << 1) | ((x >> i) & 1);
221         c1 = (c1 << 1) | ((y >> i) & 1);
222     }
223     for (var i = 16; i > 1; --i) {
224         c2 = (c2 << 1) | ((x >> i) & 1);
225         c2 = (c2 << 1) | ((y >> i) & 1);
226     }
227     var str = "";
228     for (var i = 0; i < Math.ceil((zoom + 8) / 3.0) && i < 5; ++i) {
229         digit = (c1 >> (24 - 6 * i)) & 0x3f;
230         str += char_array.charAt(digit);
231     }
232     for (var i = 5; i < Math.ceil((zoom + 8) / 3.0); ++i) {
233         digit = (c2 >> (24 - 6 * (i - 5))) & 0x3f;
234         str += char_array.charAt(digit);
235     }
236     for (var i = 0; i < ((zoom + 8) % 3); ++i) {
237         str += "-";
238     }
239     return str;
240 }