X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/0af7af382b5cf0cb446fa1c0084d38609c543daf..c6bcd1321efd293e989002cd3d222e6f756ae493:/src/lib/api_utils.js?ds=sidebyside diff --git a/src/lib/api_utils.js b/src/lib/api_utils.js index 93363e4..a44a30e 100644 --- a/src/lib/api_utils.js +++ b/src/lib/api_utils.js @@ -1,8 +1,5 @@ - -import { get_config_value } from './config_reader.js'; import { last_api_request_url_store, error_store } from './stores.js'; - function api_request_progress(status) { var loading_el = document.getElementById('loading'); if (!loading_el) return; // might not be on page yet @@ -43,14 +40,14 @@ export async function fetch_content_into_element(url, dom_element) { await fetch(url) .then(response => response.text()) .then(html => { - html = html.replace('Nominatim_API_Endpoint', get_config_value('Nominatim_API_Endpoint')); + html = html.replace('Nominatim_API_Endpoint', Nominatim_Config.Nominatim_API_Endpoint); dom_element.innerHTML = html; fetch_content_cache[url] = html; }); } function generate_nominatim_api_url(endpoint_name, params) { - return get_config_value('Nominatim_API_Endpoint') + endpoint_name + '.php?' + return Nominatim_Config.Nominatim_API_Endpoint + endpoint_name + '.php?' + Object.keys(clean_up_parameters(params)).map((k) => { return encodeURIComponent(k) + '=' + encodeURIComponent(params[k]); }).join('&'); @@ -70,7 +67,7 @@ function clean_up_parameters(params) { } export function update_html_title(title) { - document.title = [title, get_config_value('Page_Title')] + document.title = [title, Nominatim_Config.Page_Title] .filter((val) => val && val.length > 1) .join(' | '); }