X-Git-Url: https://git.openstreetmap.org./nominatim-ui.git/blobdiff_plain/8e602e40f04bb048adba103dd1dde79ba2cfdffc..5de297f31b68eb92019f3d4c973a837a368a83af:/src/assets/js/detailpage.js?ds=inline
diff --git a/src/assets/js/detailpage.js b/src/assets/js/detailpage.js
index 034d57a..919e19a 100644
--- a/src/assets/js/detailpage.js
+++ b/src/assets/js/detailpage.js
@@ -4,17 +4,19 @@
function init_map_on_detail_page(lat, lon, geojson) {
+ var attribution = get_config_value('Map_Tile_Attribution') || null;
map = new L.map('map', {
// center: [nominatim_map_init.lat, nominatim_map_init.lon],
// zoom: nominatim_map_init.zoom,
- attributionControl: (get_config_value('Map_Tile_Attribution') && get_config_value('Map_Tile_Attribution').length),
+ attributionControl: (attribution && attribution.length),
scrollWheelZoom: true, // !L.Browser.touch,
touchZoom: false
});
L.tileLayer(get_config_value('Map_Tile_URL'), {
// moved to footer
- attribution: (get_config_value('Map_Tile_Attribution') || null) // '© OpenStreetMap contributors'
+ // '© OpenStreetMap contributors'
+ attribution: attribution
}).addTo(map);
// var layerGroup = new L.layerGroup().addTo(map);