X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/0aa28e47e87fc78e152de7f1750e97ccf260c595..eed669c677633190b4a440346d26c8a0ce691dc4:/dist/config.defaults.js diff --git a/dist/config.defaults.js b/dist/config.defaults.js index 1ab8bd9..fa0556c 100644 --- a/dist/config.defaults.js +++ b/dist/config.defaults.js @@ -1,10 +1,17 @@ -// You can overwrite any defaults in dist/theme/config.theme.js +// You can overwrite any defaults in dist/theme/config.theme.js (see +// *.js.example file in that directory) let Nominatim_Config = { Page_Title: 'Nominatim Demo', // Where Nominatim API runs. Remember to add port if needed and trailing slash. Nominatim_API_Endpoint: 'http://localhost/nominatim/', + // Alternatively provide a function callback + // Nominatim_API_Endpoint: function (endpoint) { + // var url = 'http://localhost/nominatim/'; + // if (endpoint) { url += endpoint + '.php' }; + // return url; + // } // Additional request headers for Nominatim API. Nominatim_API_Endpoint_Headers: {}, @@ -28,8 +35,8 @@ let Nominatim_Config = { Map_Default_Zoom: 2, // For what {x}, {y} etc stand for see - // https://leafletjs.com/reference-1.6.0.html#tilelayer - Map_Tile_URL: 'https://{s}.tile.osm.org/{z}/{x}/{y}.png', + // https://leafletjs.com/reference-1.9.1.html#tilelayer + Map_Tile_URL: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png', // Can be text or HTML. To hide set to '' Map_Tile_Attribution: 'OpenStreetMap contributors'