blob: 729c339a4df51d9607c1a7e53fab64bd753d7dc8 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Geolocation</title>
<script>
var positionCount = 0;
function gotPos(position) {
positionCount++;
}
function initiate_watchPosition() {
navigator.geolocation.watchPosition(gotPos, function() { }, { });
}
</script>
</head>
<body>
</body>
</html>