Công Cụ Tạo Mã Nhúng Google Maps
[ CODE MÃ NHÚNG KHÔNG HOẠT ĐỘNG TRÊN BLOG NÀY... THAM MẪU CHÈN TOOL Ở PHÍA DƯỚI ]
THAM KHẢO CODE HƯỚNG DẪN TẠO MÃ NHÚNG GOOGLE MAP :
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Công Cụ Tạo Mã Nhúng Google Maps</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
padding: 20px;
background-color: #f4f4f4;
}
h1 {
color: #333;
}
label {
font-weight: bold;
}
input[type="text"] {
width: 100%;
padding: 8px;
margin: 10px 0;
box-sizing: border-box;
}
button {
padding: 10px 15px;
background-color: #5cb85c;
color: white;
border: none;
cursor: pointer;
font-size: 16px;
margin-right: 10px;
}
button:hover {
background-color: #4cae4c;
}
textarea {
width: 100%;
height: 150px;
padding: 10px;
margin-top: 20px;
box-sizing: border-box;
}
.code-container {
height: 300px;
overflow-y: scroll;
border: 1px solid #ddd;
padding: 10px;
background-color: #f9f9f9;
margin-top: 20px;
}
pre {
margin: 0;
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
}
</style>
</head>
<body>
<h1>Công Cụ Tạo Mã Nhúng Google Maps</h1>
<label for="location">Nhập Địa Chỉ hoặc Vị Trí:</label>
<input type="text" id="location" placeholder="Ví dụ: 1 Đường Trần Phú, Quận 1, TP.HCM">
<button onclick="generateEmbedCode()">Tạo Mã Nhúng</button>
<button onclick="copyEmbedCode()">Copy Mã Nhúng</button>
<label for="embedCode">Mã Nhúng Được Tạo:</label>
<textarea id="embedCode" readonly></textarea>
<script>
function generateEmbedCode() {
var location = document.getElementById('location').value;
if (location.trim() === '') {
alert('Vui lòng nhập địa chỉ hoặc vị trí.');
return;
}
var embedCode = '<iframe width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" src="https://www.google.com/maps/embed/v1/place?key=YOUR_API_KEY&q=' + encodeURIComponent(location) + '"></iframe>';
document.getElementById('embedCode').value = embedCode;
}
function copyEmbedCode() {
var embedCode = document.getElementById('embedCode');
embedCode.select();
embedCode.setSelectionRange(0, 99999);
document.execCommand("copy");
alert("Đã sao chép mã nhúng!");
}
</script>
</body>
</html>