]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/assets/js/base.js
Merge pull request #15 from mtmail/master
[nominatim-ui.git] / src / assets / js / base.js
1 'use strict';
2
3 var map;
4 var last_click_latlng;
5
6 // *********************************************************
7 // DEFAULTS
8 // *********************************************************
9
10 var Nominatim_Config_Defaults = {
11   Nominatim_API_Endpoint: 'http://localhost/nominatim/',
12   Images_Base_Url: '/mapicons/',
13   Search_AreaPolygons: 1,
14   Reverse_Default_Search_Zoom: 18,
15   Map_Default_Lat: 20.0,
16   Map_Default_Lon: 0.0,
17   Map_Default_Zoom: 2,
18   Map_Tile_URL: 'https://{s}.tile.osm.org/{z}/{x}/{y}.png',
19   Map_Tile_Attribution: '<a href="https://osm.org/copyright">OpenStreetMap contributors</a>'
20 };
21
22 // *********************************************************
23 // HELPERS
24 // *********************************************************
25
26
27 function get_config_value(str, default_val) {
28   var value = ((typeof Nominatim_Config !== 'undefined')
29                && (typeof Nominatim_Config[str] !== 'undefined'))
30     ? Nominatim_Config[str]
31     : Nominatim_Config_Defaults[str];
32   return (typeof value !== 'undefined' ? value : default_val);
33 }
34
35 function parse_and_normalize_geojson_string(part) {
36   // normalize places the geometry into a featurecollection, similar to
37   // https://github.com/mapbox/geojson-normalize
38   var parsed_geojson = {
39     type: 'FeatureCollection',
40     features: [
41       {
42         type: 'Feature',
43         geometry: part,
44         properties: {}
45       }
46     ]
47   };
48   return parsed_geojson;
49 }
50
51 function map_link_to_osm() {
52   var zoom = map.getZoom();
53   var lat = map.getCenter().lat;
54   var lng = map.getCenter().lng;
55   return 'https://openstreetmap.org/#map=' + zoom + '/' + lat + '/' + lng;
56 }
57
58 function map_viewbox_as_string() {
59   var bounds = map.getBounds();
60   var west = bounds.getWest();
61   var east = bounds.getEast();
62
63   if ((east - west) >= 360) { // covers more than whole planet
64     west = map.getCenter().lng - 179.999;
65     east = map.getCenter().lng + 179.999;
66   }
67   east = L.latLng(77, east).wrap().lng;
68   west = L.latLng(77, west).wrap().lng;
69
70   return [
71     west.toFixed(5), // left
72     bounds.getNorth().toFixed(5), // top
73     east.toFixed(5), // right
74     bounds.getSouth().toFixed(5) // bottom
75   ].join(',');
76 }
77
78
79 // *********************************************************
80 // PAGE HELPERS
81 // *********************************************************
82
83 function fetch_from_api(endpoint_name, params, callback) {
84   //
85   // `&a=&b=&c=1` => '&c=1'
86   var param_names = Object.keys(params);
87   for (var i = 0; i < param_names.length; i += 1) {
88     var val = params[param_names[i]];
89     if (typeof (val) === 'undefined' || val === '' || val === null) {
90       delete params[param_names[i]];
91     }
92   }
93
94   var api_url = get_config_value('Nominatim_API_Endpoint') + endpoint_name + '.php?'
95                   + $.param(params);
96   if (endpoint_name !== 'status') {
97     $('#api-request-link').attr('href', api_url);
98   }
99   $.get(api_url, function (data) {
100     callback(data);
101   });
102 }
103
104 function update_data_date() {
105   fetch_from_api('status', { format: 'json' }, function (data) {
106     $('#data-date').text(data.data_updated);
107   });
108 }
109
110 function render_template(el, template_name, page_context) {
111   var template_source = $('#' + template_name).text();
112   var template = Handlebars.compile(template_source);
113   var html = template(page_context);
114   el.html(html);
115 }
116
117 function update_html_title(title) {
118   var prefix = '';
119   if (title && title.length > 1) {
120     prefix = title + ' | ';
121   }
122   $('head title').text(prefix + 'OpenStreetMap Nominatim');
123 }
124
125 function show_error(html) {
126   $('#error-overlay').html(html).show();
127 }
128
129 function hide_error() {
130   $('#error-overlay').empty().hide();
131 }
132
133
134 $(document).ajaxError(function (event, jqXHR, ajaxSettings/* , thrownError */) {
135   // console.log(thrownError);
136   // console.log(ajaxSettings);
137   var url = ajaxSettings.url;
138   show_error('Error fetching results from <a href="' + url + '">' + url + '</a>');
139 });
140
141
142 jQuery(document).ready(function () {
143   hide_error();
144 });