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

Tai Hong Kong Massage Cote Saint

'; bubbleDetails += '
'; bubbleDetails += '3921 rue Jean Talon O Cote Saint-Luc
Cote Saint Luc,Quebec' bubbleDetails += '
514-729-8188'; bubbleDetails += '
'; L.marker([45.4923049, -73.6528765]).addTo(mymap); } $(document).ready(function () { show_map(); });