]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/assets/js/base.js
forgot to remove a debug statement
[nominatim-ui.git] / src / assets / js / base.js
1 var map;
2 var last_click_latlng;
3
4
5 // *********************************************************
6 // HELPERS
7 // *********************************************************
8
9 function get_config_value(str, default_val) {
10   return (typeof Nominatim_Config[str] !== 'undefined' ? Nominatim_Config[str] : default_val);
11 }
12
13 function parse_and_normalize_geojson_string(part) {
14   // normalize places the geometry into a featurecollection, similar to
15   // https://github.com/mapbox/geojson-normalize
16   var parsed_geojson = {
17     type: 'FeatureCollection',
18     features: [
19       {
20         type: 'Feature',
21         geometry: part,
22         properties: {}
23       }
24     ]
25   };
26   return parsed_geojson;
27 }
28
29 function map_link_to_osm() {
30   return 'https://openstreetmap.org/#map=' + map.getZoom() + '/' + map.getCenter().lat + '/' + map.getCenter().lng;
31 }
32
33 function map_viewbox_as_string() {
34   var bounds = map.getBounds();
35   var west = bounds.getWest();
36   var east = bounds.getEast();
37
38   if ((east - west) >= 360) { // covers more than whole planet
39     west = map.getCenter().lng - 179.999;
40     east = map.getCenter().lng + 179.999;
41   }
42   east = L.latLng(77, east).wrap().lng;
43   west = L.latLng(77, west).wrap().lng;
44
45   return [
46     west.toFixed(5), // left
47     bounds.getNorth().toFixed(5), // top
48     east.toFixed(5), // right
49     bounds.getSouth().toFixed(5) // bottom
50   ].join(',');
51 }
52
53
54 // *********************************************************
55 // PAGE HELPERS
56 // *********************************************************
57
58 function fetch_from_api(endpoint_name, params, callback) {
59   // `&a=&b=&c=1` => '&c='
60   for (var k in params) {
61     if (typeof (params[k]) === 'undefined' || params[k] === '' || params[k] === null) delete params[k];
62   }
63
64   var api_url = get_config_value('Nominatim_API_Endpoint') + endpoint_name + '.php?' + $.param(params);
65   if (endpoint_name !== 'status') {
66     $('#api-request-link').attr('href', api_url);
67   }
68   $.get(api_url, function (data) {
69     callback(data);
70   });
71 }
72
73 function update_data_date() {
74   fetch_from_api('status', { format: 'json' }, function (data) {
75     $('#data-date').text(data.data_updated);
76   });
77 }
78
79 function render_template(el, template_name, page_context) {
80   var template_source = $('#' + template_name).text();
81   var template = Handlebars.compile(template_source);
82   var html = template(page_context);
83   el.html(html);
84 }
85
86 function show_error(html) {
87   $('#error-overlay').html(html).show();
88 }
89
90 function hide_error() {
91   $('#error-overlay').empty().hide();
92 }
93
94
95 $(document).ajaxError(function (event, jqXHR, ajaxSettings, thrownError) {
96   // console.log(thrownError);
97   // console.log(ajaxSettings);
98   show_error('Error fetching results from <a href="' + ajaxSettings.url + '">' + ajaxSettings.url + '</a>');
99 });
100
101
102 jQuery(document).ready(function () {
103   hide_error();
104 });