|
|
| 79行目: |
79行目: |
| } | | } |
| </style> | | </style> |
| <script>
| |
| document.addEventListener("DOMContentLoaded", function() {
| |
| document.querySelectorAll(".streetview-placeholder").forEach(function(el) {
| |
| const url = el.getAttribute("data-url");
| |
| if (!url) return;
| |
|
| |
| const iframe = document.createElement("iframe");
| |
| iframe.src = url.replace(/&/g, "&");
| |
| iframe.width = "100%";
| |
| iframe.height = "100%";
| |
| iframe.style.border = "0";
| |
| iframe.loading = "lazy";
| |
| iframe.allowFullscreen = true;
| |
| iframe.referrerPolicy = "no-referrer-when-downgrade";
| |
|
| |
| el.appendChild(iframe);
| |
| });
| |
| document.querySelectorAll(".streetview-api-placeholder").forEach(function(el) {
| |
| const name = el.getAttribute("data-name").replace(/\s+/g, "");
| |
| if (!name) return;
| |
|
| |
| const src = `https://www.google.com/maps/embed/v1/streetview?key=AIzaSyDOA7e6S9arQa6NvnsFYXxGjX9P_ycwoyM&location=${name}`;
| |
|
| |
| const iframe = document.createElement("iframe");
| |
| iframe.src = src.replace(/&/g, "&");
| |
| iframe.width = "100%";
| |
| iframe.height = "100%";
| |
| iframe.style.border = "0";
| |
| iframe.loading = "lazy";
| |
| iframe.allowFullscreen = true;
| |
| iframe.referrerPolicy = "no-referrer-when-downgrade";
| |
|
| |
| el.appendChild(iframe);
| |
| });
| |
| });//# sourceURL=foobar.js
| |
| </script>
| |
| </html> | | </html> |