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

New Beauty & Health Center

'; bubbleDetails += '
'; bubbleDetails += '1607 Center St NW
Calgary,Alberta' bubbleDetails += '
403-277-1122'; bubbleDetails += '
'; L.marker([51.0662552, -114.0631605]).addTo(mymap); } $(document).ready(function () { show_map(); });