-
Notifications
You must be signed in to change notification settings - Fork 0
/
ARindex11.html
106 lines (97 loc) · 3.27 KB
/
ARindex11.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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html>
<head>
<title>Віртуальна сцена з моделями</title>
<style>
#scene {
position: relative;
width: 100%;
height: 100vh;
border: 1px solid black;
overflow: hidden;
} .model {
position: absolute;
width: 50px;
height: 50px;
background-color: red;
display: flex;
align-items: center;
justify-content: center;
}
.left-model {
left: 100px;
top: 50%;
transform: translateY(-50%);
}
.right-model {
right: 100px;
top: 50%;
transform: translateY(-50%);
}
.model a {
color: white;
text-decoration: none;
font-size: 10px;
}
#video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
object-fit: cover;
}
#geolocation {
position: absolute;
top: 10px;
right: 10px;
color: black;
font-size: 16px;
}
</style>
</head>
<body>
<div id="scene">
<video id="video" autoplay></video>
<div class="model left-model">
<a href="https://goo.gl/maps/o4FyvtDpsaEwdy7j6" target="_blank">Геопозиція 1</a>
</div>
<div class="model right-model">
<a href="https://goo.gl/maps/farBxvVgUgqrmWRr9" target="_blank">Геопозиція 2</a>
</div>
</div><div id="geolocation">Геопозиція: </div>
<script>
// Отримання доступу до камери
navigator.mediaDevices.getUserMedia({ video: true })
.then(function (stream) {
var videoElement = document.getElementById('video');
videoElement.srcObject = stream;
})
.catch(function (error) {
console.error('Помилка отримання доступу до камери:', error);
});
// Отримання геопозиції користувача
if ("geolocation" in navigator) {
navigator.geolocation.getCurrentPosition(function (position) {
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
var geolocationElement = document.getElementById('geolocation');
geolocationElement.textContent = "Геопозиція: " + latitude + ", " + longitude;
}, function (error) {
console.error('Помилка отримання геопозиції:', error);
});
} else {
var geolocationElement = document.getElementById('geolocation');
geolocationElement.textContent = "Геопозиція: Недоступна";
}
// Зміна розмірів відео при зміні розміру вікна браузера
window.addEventListener('resize', function() {
var videoElement = document.getElementById ('video');
var sceneElement = document.getElementById('scene');
videoElement.style.width = sceneElement.offsetWidth + 'px';
videoElement.style.height = sceneElement.offsetHeight + 'px';
});
</script>
</body>
</html>