function show_map() { var mymap = L.map('map_canvas').setView([43.4574065, -80.4738322], 15); L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution: '© OpenStreetMap contributors' }).addTo(mymap); let bubbleDetails; bubbleDetails = '
'; bubbleDetails += ''; bubbleDetails += '

Eden Gentleman\'s Spa (private)

'; bubbleDetails += '
'; bubbleDetails += 'close to Frederick Mall
Kitchener,Ontario' bubbleDetails += '
519-568-9873'; bubbleDetails += '
'; L.marker([43.4574065, -80.4738322]).addTo(mymap); } $(document).ready(function () { show_map(); });