in maps/script.js [77:94]
function renderPage(location, caption = "") {
const root = document.querySelector("#root");
caption = caption.replace(/\\/g, '');
render(
html`
<div id="map">${mapsFunction.embed(location)}</div>
${caption
? html`<div id="caption"><p>${caption}</p></div>`
: ""}
<div id="presets-container">
<span id="take-me-somewhere">Take me somewhere...</span>
<div id="presets">
${presets.map(
([name, message]) =>
html`<button @click=${() => chat(message)} class="preset">
${name}
</button>`
)}