<header>
<h2 class="title">Geolocation -> toJSON()</h2>
<p class="description">Отримує дані про геолокацію користувача та виводить їх у форматі JSON.</p>
</header>
<main>
<div class="result">
<button id="getLocationBtn">Отримати місцезнаходження</button>
<pre id="output"></pre>
</div>
</main>
body {
font-size: 16px;
line-height: 1.5;
font-family: monospace;
}
header {
background-color: #f1f1f1;
margin-bottom: 25px;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
header h2.title {
padding-bottom: 15px;
border-bottom: 1px solid #999;
}
header p.description {
font-style: italic;
color: #222;
}
.result {
background-color: #f8f8f8;
padding: 15px;
box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
pre {
background-color: #eee;
padding: 10px;
white-space: pre-wrap;
word-wrap: break-word;
}
document.getElementById('getLocationBtn').addEventListener('click', function() {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position) {
// Отримуємо геолокацію у форматі JSON
const positionJSON = position.toJSON();
// Виводимо результат у елемент з id="output"
document.getElementById('output').textContent = JSON.stringify(positionJSON, null, 2);
}, function(error) {
document.getElementById('output').textContent = 'Помилка: Не вдалося отримати геолокацію';
});
} else {
document.getElementById('output').textContent = 'Геолокація не підтримується в цьому браузері';
}
});
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.