-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
camera-photo.vugu
32 lines (28 loc) · 1.03 KB
/
camera-photo.vugu
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
<div class="d3-a30th0aietjh0i">
<main:TitleBar>
<button class="w3-bar-item w3-button w3-large w3-ripple w3-teal" @click='c.Navigate("/camera/" + c.camera.Key(), nil)'><i class="fas fa-arrow-left"></i></button>
<span class="w3-bar-item w3-large" vg-content='fmt.Sprintf("Photo %s", c.Key())'></span>
</main:TitleBar>
<div class="w3-container w3-row-padding">
<div class="w3-half">
<div class="w3-card">
<div class="w3-container w3-green w3-large">Position</div>
<main:CoordinateOptimizableComponent :Editable="true" :BindValue="&c.Position"></main:CoordinateOptimizableComponent>
</div>
</div>
<div class="w3-half">
<div class="w3-card">
<div class="w3-container w3-green w3-large">Rotation</div>
<main:RotationOptimizableComponent :Editable="true" :BindValue="&c.Orientation"></main:RotationOptimizableComponent>
</div>
</div>
</div>
<main:CameraPhotoComponent :Photo="c"></main:CameraPhotoComponent>
</div>
<style>
.d3-a30th0aietjh0i {
display:flex;
flex-direction:column;
height:100vh;
}
</style>