blob: 1e3cb0afb75bfad763c643b17722d6290c884358 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html>
<head>
<title>Geolocation Test Page</title>
<meta charset="utf-8">
</head>
<body>
<script>
function clb(position) {
// Show a green background if permission is granted
document.body.style.background = "#008000";
}
function err(error) {
// Show a red background if permission is denied
if (error.code == error.PERMISSION_DENIED)
document.body.style.background = "#FF0000";
}
navigator.geolocation.getCurrentPosition(clb, err, {timeout: 0});
</script>
</body>
</html>
|