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

50th Street Massage Centre

'; bubbleDetails += '
'; bubbleDetails += '8170 50th St NW Unit 115
Edmonton,Alberta' bubbleDetails += '
780-469-3885'; bubbleDetails += '
'; L.marker([53.516379, -113.420448]).addTo(mymap); } $(document).ready(function () { show_map(); });