]> git.openstreetmap.org Git - nominatim-ui.git/blob - dist/config.defaults.js
Merge remote-tracking branch 'upstream/master'
[nominatim-ui.git] / dist / config.defaults.js
1 // You can overwrite any defaults in dist/theme/config.theme.js
2
3 let Nominatim_Config = {
4   Page_Title: 'Nominatim Demo',
5
6   // Where Nominatim API runs. Remember to add port if needed and trailing slash.
7   Nominatim_API_Endpoint: 'http://localhost/nominatim/',
8
9   // Additional request headers for Nominatim API.
10   Nominatim_API_Endpoint_Headers: {},
11
12   // Additional query parameters for Nominatim API.
13   Nominatim_API_Endpoint_Params: {},
14
15   // relative path or full URL
16   Images_Base_Url: 'mapicons/',
17
18   // If the API should return polygons to be displayed on the map
19   Search_AreaPolygons: true,
20
21   // ---- MAP ----
22   Reverse_Default_Search_Zoom: 18,
23   Map_Default_Lat: 20.0,
24   Map_Default_Lon: 0.0,
25   Map_Default_Zoom: 2,
26
27   // For what {x}, {y} etc stand for see
28   // https://leafletjs.com/reference-1.6.0.html#tilelayer
29   Map_Tile_URL: 'https://{s}.tile.osm.org/{z}/{x}/{y}.png',
30
31   // Can be text or HTML. To hide set to ''
32   Map_Tile_Attribution: '<a href="https://osm.org/copyright">OpenStreetMap contributors</a>'
33 };