-
Notifications
You must be signed in to change notification settings - Fork 0
/
geo_js.html
51 lines (50 loc) · 1.38 KB
/
geo_js.html
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
<html>
<head>
<title>Geo Demo - js</title>
</head>
<body>
<h1>Geo Demo - js</h1>
<div id="demo"></div>
<script type='text/javascript'>
var x = document.getElementById("demo");
function getLocation() {
if (navigator.geolocation) {
var options = {
enableHighAccuracy: true,
timeout: 200,
maximumAge: 700
};
//navigator.geolocation.getCurrentPosition(showPosition);
var watch = navigator.geolocation.watchPosition(showPosition,showError,options);
}
else{
switch(error.code) {
case error.PERMISSION_DENIED:
x.innerHTML = "User denied the request for Geolocation."
break;
case error.POSITION_UNAVAILABLE:
x.innerHTML = "Location information is unavailable."
break;
case error.TIMEOUT:
x.innerHTML = "The request to get user location timed out."
break;
case error.UNKNOWN_ERROR:
x.innerHTML = "An unknown error occurred."
break;
}
}
}
function showPosition(position) {
var str = "timestamp:"+position.timestamp;
for(key in position.coords){
str+="<br/>"+key+":"+position.coords[key];
};
x.innerHTML = str;
}
function showError(error) {
x.innerHTML = "code:" + error.code + "<br/>message:"+error.message;
}
getLocation();
</script>
</body>
</html>