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

Salon de Massage Adagio

'; bubbleDetails += '
'; bubbleDetails += '3411 Rue Sainte-Catherine E, Montréal, QC H1W 2C9
Montreal,Quebec' bubbleDetails += '
514-526-2345'; bubbleDetails += '
'; L.marker([45.541458, -73.5397541]).addTo(mymap); } $(document).ready(function () { show_map(); });