-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (76 loc) · 2.62 KB
/
index.html
File metadata and controls
89 lines (76 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Get Current Location</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f9;
}
.container {
text-align: center;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
a {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #007BFF;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
a:hover {
background-color: #0056b3;
}
.message {
margin-top: 20px;
color: green;
font-size: 14px;
}
.loading {
color: red;
}
</style>
</head>
<body>
<div class="container">
<h1>Find Your Current Location</h1>
<a href="#" id="location" target="_blank">Click to open your location on Google Maps</a>
<p id="message" class="message"></p>
</div>
<script>
const locationLink = document.getElementById('location');
const message = document.getElementById('message');
if (navigator.geolocation) {
message.textContent = "Fetching your current location...";
message.classList.add('loading');
navigator.geolocation.getCurrentPosition(function (position) {
const latitude = position.coords.latitude;
const longitude = position.coords.longitude;
const mapUrl = `https://www.google.com/maps?q=${latitude},${longitude}`;
locationLink.setAttribute('href', mapUrl);
locationLink.textContent = "Click to view your location on Google Maps";
message.textContent = "Location fetched successfully!";
message.classList.remove('loading');
}, function (error) {
message.textContent = "Unable to fetch location. Please check your location settings.";
console.error('Error Code = ' + error.code + ' - ' + error.message);
});
} else {
message.textContent = "Geolocation is not supported by your browser.";
}
</script>
</body>
</html>