]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/index/query.js
Enebale I18n for embedded maps
[rails.git] / app / assets / javascripts / index / query.js
1 //= require jquery.simulate
2
3 OSM.Query = function(map) {
4   var protocol = document.location.protocol === "https:" ? "https:" : "http:",
5     url = protocol + OSM.OVERPASS_URL,
6     queryButton = $(".control-query .control-button"),
7     uninterestingTags = ['source', 'source_ref', 'source:ref', 'history', 'attribution', 'created_by', 'tiger:county', 'tiger:tlid', 'tiger:upload_uuid', 'KSJ2:curve_id', 'KSJ2:lat', 'KSJ2:lon', 'KSJ2:coordinate', 'KSJ2:filename', 'note:ja'],
8     marker;
9
10   var featureStyle = {
11     color: "#FF6200",
12     weight: 4,
13     opacity: 1,
14     fillOpacity: 0.5,
15     clickable: false
16   };
17
18   queryButton.on("click", function (e) {
19     e.preventDefault();
20     e.stopPropagation();
21
22     if (queryButton.hasClass("active")) {
23       disableQueryMode();
24     } else if (!queryButton.hasClass("disabled")) {
25       enableQueryMode();
26     }
27   }).on("disabled", function () {
28     if (queryButton.hasClass("active")) {
29       map.off("click", clickHandler);
30       $(map.getContainer()).removeClass("query-active").addClass("query-disabled");
31       $(this).tooltip("show");
32     }
33   }).on("enabled", function () {
34     if (queryButton.hasClass("active")) {
35       map.on("click", clickHandler);
36       $(map.getContainer()).removeClass("query-disabled").addClass("query-active");
37       $(this).tooltip("hide");
38     }
39   });
40
41   $("#sidebar_content")
42     .on("mouseover", ".query-results li.query-result", function () {
43       var geometry = $(this).data("geometry");
44       if (geometry) map.addLayer(geometry);
45       $(this).addClass("selected");
46     })
47     .on("mouseout", ".query-results li.query-result", function () {
48       var geometry = $(this).data("geometry");
49       if (geometry) map.removeLayer(geometry);
50       $(this).removeClass("selected");
51     })
52     .on("mousedown", ".query-results li.query-result", function () {
53       var moved = false;
54       $(this).one("click", function (e) {
55         if (!moved) {
56           var geometry = $(this).data("geometry");
57           if (geometry) map.removeLayer(geometry);
58
59           if (!$(e.target).is('a')) {
60             $(this).find("a").simulate("click", e);
61           }
62         }
63       }).one("mousemove", function () {
64         moved = true;
65       });
66     });
67
68   function interestingFeature(feature) {
69     if (feature.tags) {
70       for (var key in feature.tags) {
71         if (uninterestingTags.indexOf(key) < 0) {
72           return true;
73         }
74       }
75     }
76
77     return false;
78   }
79
80   function featurePrefix(feature) {
81     var tags = feature.tags;
82     var prefix = "";
83
84     if (tags.boundary === "administrative" && tags.admin_level) {
85       prefix = I18n.t("geocoder.search_osm_nominatim.admin_levels.level" + tags.admin_level, {
86         defaultValue: I18n.t("geocoder.search_osm_nominatim.prefix.boundary.administrative")
87       });
88     } else {
89       var prefixes = I18n.t("geocoder.search_osm_nominatim.prefix");
90       var key, value;
91
92       for (key in tags) {
93         value = tags[key];
94
95         if (prefixes[key]) {
96           if (prefixes[key][value]) {
97             return prefixes[key][value];
98           }
99         }
100       }
101
102       for (key in tags) {
103         value = tags[key];
104
105         if (prefixes[key]) {
106           var first = value.substr(0, 1).toUpperCase(),
107             rest = value.substr(1).replace(/_/g, " ");
108
109           return first + rest;
110         }
111       }
112     }
113
114     if (!prefix) {
115       prefix = I18n.t("javascripts.query." + feature.type);
116     }
117
118     return prefix;
119   }
120
121   function featureName(feature) {
122     var tags = feature.tags,
123       locales = I18n.locales.get();
124
125     for (var i = 0; i < locales.length; i++) {
126       if (tags["name:" + locales[i]]) {
127         return tags["name:" + locales[i]];
128       }
129     }
130
131     if (tags.name) {
132       return tags.name;
133     } else if (tags.ref) {
134       return tags.ref;
135     } else if (tags["addr:housename"]) {
136       return tags["addr:housename"];
137     } else if (tags["addr:housenumber"] && tags["addr:street"]) {
138       return tags["addr:housenumber"] + " " + tags["addr:street"];
139     } else {
140       return "#" + feature.id;
141     }
142   }
143
144   function featureGeometry(feature) {
145     var geometry;
146
147     if (feature.type === "node" && feature.lat && feature.lon) {
148       geometry = L.circleMarker([feature.lat, feature.lon], featureStyle);
149     } else if (feature.type === "way" && feature.geometry) {
150       geometry = L.polyline(feature.geometry.filter(function (point) {
151         return point !== null;
152       }).map(function (point) {
153         return [point.lat, point.lon];
154       }), featureStyle);
155     } else if (feature.type === "relation" && feature.members) {
156       geometry = L.featureGroup(feature.members.map(featureGeometry).filter(function (geometry) {
157         return geometry !== undefined;
158       }));
159     }
160
161     return geometry;
162   }
163
164   function runQuery(latlng, radius, query, $section, merge, compare) {
165     var $ul = $section.find("ul");
166
167     $ul.empty();
168     $section.show();
169
170     $section.find(".loader").oneTime(1000, "loading", function () {
171       $(this).show();
172     });
173
174     if ($section.data("ajax")) {
175       $section.data("ajax").abort();
176     }
177
178     $section.data("ajax", $.ajax({
179       url: url,
180       method: "POST",
181       data: {
182         data: "[timeout:5][out:json];" + query,
183       },
184       success: function(results) {
185         var elements;
186
187         $section.find(".loader").stopTime("loading").hide();
188
189         if (merge) {
190           elements = results.elements.reduce(function (hash, element) {
191             var key = element.type + element.id;
192             if ("geometry" in element) {
193               delete element.bounds;
194             }
195             hash[key] = $.extend({}, hash[key], element);
196             return hash;
197           }, {});
198
199           elements = Object.keys(elements).map(function (key) {
200             return elements[key];
201           });
202         } else {
203           elements = results.elements;
204         }
205
206         if (compare) {
207           elements = elements.sort(compare);
208         }
209
210         for (var i = 0; i < elements.length; i++) {
211           var element = elements[i];
212
213           if (interestingFeature(element)) {
214             var $li = $("<li>")
215               .addClass("query-result")
216               .data("geometry", featureGeometry(element))
217               .appendTo($ul);
218             var $p = $("<p>")
219               .text(featurePrefix(element) + " ")
220               .appendTo($li);
221
222             $("<a>")
223               .attr("href", "/" + element.type + "/" + element.id)
224               .text(featureName(element))
225               .appendTo($p);
226           }
227         }
228
229         if ($ul.find("li").length === 0) {
230           $("<li>")
231             .text(I18n.t("javascripts.query.nothing_found"))
232             .appendTo($ul);
233         }
234       },
235       error: function(xhr, status, error) {
236         $section.find(".loader").stopTime("loading").hide();
237
238         $("<li>")
239           .text(I18n.t("javascripts.query." + status, { server: url, error: error }))
240           .appendTo($ul);
241       }
242     }));
243   }
244
245   function compareSize(feature1, feature2) {
246     var width1 = feature1.bounds.maxlon - feature1.bounds.minlon,
247       height1 = feature1.bounds.maxlat - feature1.bounds.minlat,
248       area1 = width1 * height1,
249       width2 = feature2.bounds.maxlat - feature2.bounds.minlat,
250       height2 = feature2.bounds.maxlat - feature2.bounds.minlat,
251       area2 = width2 * height2;
252
253     return area1 - area2;
254   }
255
256   /*
257    * To find nearby objects we ask overpass for the union of the
258    * following sets:
259    *
260    *   node(around:<radius>,<lat>,lng>)
261    *   way(around:<radius>,<lat>,lng>)
262    *   relation(around:<radius>,<lat>,lng>)
263    *
264    * to find enclosing objects we first find all the enclosing areas:
265    *
266    *   is_in(<lat>,<lng>)->.a
267    *
268    * and then return the union of the following sets:
269    *
270    *   relation(pivot.a)
271    *   way(pivot.a)
272    *
273    * In both cases we then ask to retrieve tags and the geometry
274    * for each object.
275    */
276   function queryOverpass(lat, lng) {
277     var latlng = L.latLng(lat, lng).wrap(),
278       bounds = map.getBounds().wrap(),
279       bbox = bounds.getSouth() + "," + bounds.getWest() + "," + bounds.getNorth() + "," + bounds.getEast(),
280       radius = 10 * Math.pow(1.5, 19 - map.getZoom()),
281       around = "around:" + radius + "," + lat + "," + lng,
282       nodes = "node(" + around + ")",
283       ways = "way(" + around + ")",
284       relations = "relation(" + around + ")",
285       nearby = "(" + nodes + ";" + ways + ");out tags geom(" + bbox + ");" + relations + ";out geom(" + bbox + ");",
286       isin = "is_in(" + lat + "," + lng + ")->.a;way(pivot.a);out tags bb;out ids geom(" + bbox + ");relation(pivot.a);out tags bb;";
287
288     $("#sidebar_content .query-intro")
289       .hide();
290
291     if (marker) map.removeLayer(marker);
292     marker = L.circle(latlng, radius, featureStyle).addTo(map);
293
294     $(document).everyTime(75, "fadeQueryMarker", function (i) {
295       if (i === 10) {
296         map.removeLayer(marker);
297       } else {
298         marker.setStyle({
299           opacity: 1 - i * 0.1,
300           fillOpacity: 0.5 - i * 0.05
301         });
302       }
303     }, 10);
304
305     runQuery(latlng, radius, nearby, $("#query-nearby"), false);
306     runQuery(latlng, radius, isin, $("#query-isin"), true, compareSize);
307   }
308
309   function clickHandler(e) {
310     var precision = OSM.zoomPrecision(map.getZoom()),
311       latlng = e.latlng.wrap(),
312       lat = latlng.lat.toFixed(precision),
313       lng = latlng.lng.toFixed(precision);
314
315     OSM.router.route("/query?lat=" + lat + "&lon=" + lng);
316   }
317
318   function enableQueryMode() {
319     queryButton.addClass("active");
320     map.on("click", clickHandler);
321     $(map.getContainer()).addClass("query-active");
322   }
323
324   function disableQueryMode() {
325     if (marker) map.removeLayer(marker);
326     $(map.getContainer()).removeClass("query-active").removeClass("query-disabled");
327     map.off("click", clickHandler);
328     queryButton.removeClass("active");
329   }
330
331   var page = {};
332
333   page.pushstate = page.popstate = function(path) {
334     OSM.loadSidebarContent(path, function () {
335       page.load(path, true);
336     });
337   };
338
339   page.load = function(path, noCentre) {
340     var params = querystring.parse(path.substring(path.indexOf('?') + 1)),
341       latlng = L.latLng(params.lat, params.lon);
342
343     if (!window.location.hash && !noCentre && !map.getBounds().contains(latlng)) {
344       OSM.router.withoutMoveListener(function () {
345         map.setView(latlng, 15);
346       });
347     }
348
349     queryOverpass(params.lat, params.lon);
350   };
351
352   page.unload = function(sameController) {
353     if (!sameController) {
354       disableQueryMode();
355     }
356   };
357
358   return page;
359 };