]> git.openstreetmap.org Git - rails.git/blob - public/javascripts/site.js
Make ?{node,way,relation}=id GET argumens work for the shortlink as
[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, obj_type, obj_id) {
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 (obj_type && obj_id) {
22       args[obj_type] = obj_id;
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       node.href = setArgs("/edit", args);
59       node.style.fontStyle = 'normal';
60     } else {
61       node.href = 'javascript:alert("zoom in to edit map");';
62       node.style.fontStyle = 'italic';
63     }
64   }
65   
66   node = document.getElementById("historyanchor");
67   if (node) {
68     if (zoom >= 11) {
69       var args = new Object();
70       //set bbox param from 'extents' object
71       if (typeof minlon == "number" &&
72           typeof minlat == "number" &&
73           typeof maxlon == "number" &&
74           typeof maxlat == "number") {
75       
76         minlon = Math.round(minlon * decimals) / decimals;
77         minlat = Math.round(minlat * decimals) / decimals;
78         maxlon = Math.round(maxlon * decimals) / decimals;
79         maxlat = Math.round(maxlat * decimals) / decimals;
80         args.bbox = minlon + "," + minlat + "," + maxlon + "," + maxlat;
81       }
82       
83       node.href = setArgs("/history", args);
84       node.style.fontStyle = 'normal';
85     } else {
86       node.href = 'javascript:alert("zoom in to see editing history");';
87       node.style.fontStyle = 'italic';
88     }
89   }
90
91   node = document.getElementById("shortlinkanchor");
92   if (node) {
93     var args = getArgs(node.href);
94     var code = makeShortCode(lat, lon, zoom);
95     var prefix = shortlinkPrefix();
96
97     // Add ?{node,way,relation}=id to the arguments
98     if (obj_type && obj_id) {
99       args[obj_type] = obj_id;
100     }
101
102     // little hack. may the gods of hardcoding please forgive me, or 
103     // show me the Right way to do it.
104     if (layers && (layers != "B000FTF")) {
105       args["layers"] = layers;
106       node.href = setArgs(prefix + "/go/" + code, args);
107     } else {
108       node.href = prefix + "/go/" + code;
109     }
110   }
111 }
112
113
114 /*
115  * This is a hack to hardcode opestreetmap.org -> osm.org in the
116  * shortlink
117  */
118 function shortlinkPrefix() {
119     var hostname = window.location.hostname;
120     var normalized_hostname = hostname.replace(/^:www\./i,'');
121     var prefix = '';
122
123     if (normalized_hostname.match(/^openstreetmap\.org$/i)) {
124         prefix = "http://osm.org";
125     }
126
127     return prefix;
128 }
129
130 function getArgs(url) {
131   var args = new Object();
132   var querystart = url.indexOf("?");
133
134   if (querystart >= 0) {
135      var querystring = url.substring(querystart + 1);
136      var queryitems = querystring.split("&");
137
138      for (var i = 0; i < queryitems.length; i++) {
139         if (match = queryitems[i].match(/^(.*)=(.*)$/)) {
140            args[unescape(match[1])] = unescape(match[2]);
141         } else {
142            args[unescape(queryitems[i])] = null
143         }
144      }
145   }
146
147   return args;
148 }
149
150 /*
151  * Called to set the arguments on a URL from the given hash.
152  */
153 function setArgs(url, args) {
154    var queryitems = new Array();
155
156    for (arg in args)
157    {
158       if (args[arg] == null) {
159          queryitems.push(escape(arg));
160       } else {
161          queryitems.push(escape(arg) + "=" + escape(args[arg]));
162       }
163    }
164
165    return url.replace(/\?.*$/, "") + "?" + queryitems.join("&");
166 }
167
168 /*
169  * Called to get the arguments from a URL as a hash.
170  */
171 function getStyle(el, property) {
172   var style;
173
174   if (el.currentStyle) {
175     style = el.currentStyle[property];
176   } else if( window.getComputedStyle ) {
177     style = document.defaultView.getComputedStyle(el,null).getPropertyValue(property);
178   } else {
179     style = el.style[property];
180   }
181
182   return style;
183 }
184
185 /*
186  * Called to interpolate JavaScript variables in strings using a
187  * similar syntax to rails I18n string interpolation - the only
188  * difference is that [[foo]] is the placeholder syntax instead
189  * of {{foo}} which allows the same string to be processed by both
190  * rails and then later by javascript.
191  */
192 function i18n(string, keys) {
193   for (var key in keys) {
194     var re_key = '\\[\\[' + key + '\\]\\]';
195     var re = new RegExp(re_key, "g");
196       
197     string = string.replace(re, keys[key]);
198   }
199    
200   return string;
201
202
203 function makeShortCode(lat, lon, zoom) {
204     char_array = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_@";
205     var x = Math.round((lon + 180.0) * ((1 << 30) / 90.0));
206     var y = Math.round((lat +  90.0) * ((1 << 30) / 45.0));
207     // hack around the fact that JS apparently only allows 53-bit integers?!?
208     // note that, although this reduces the accuracy of the process, it's fine for
209     // z18 so we don't need to care for now.
210     var c1 = 0, c2 = 0;
211     for (var i = 31; i > 16; --i) {
212         c1 = (c1 << 1) | ((x >> i) & 1);
213         c1 = (c1 << 1) | ((y >> i) & 1);
214     }
215     for (var i = 16; i > 1; --i) {
216         c2 = (c2 << 1) | ((x >> i) & 1);
217         c2 = (c2 << 1) | ((y >> i) & 1);
218     }
219     var str = "";
220     for (var i = 0; i < Math.ceil((zoom + 8) / 3.0) && i < 5; ++i) {
221         digit = (c1 >> (24 - 6 * i)) & 0x3f;
222         str += char_array.charAt(digit);
223     }
224     for (var i = 5; i < Math.ceil((zoom + 8) / 3.0); ++i) {
225         digit = (c2 >> (24 - 6 * (i - 5))) & 0x3f;
226         str += char_array.charAt(digit);
227     }
228     for (var i = 0; i < ((zoom + 8) % 3); ++i) {
229         str += "=";
230     }
231     return str;
232 }