-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
point.vugu
26 lines (22 loc) · 958 Bytes
/
point.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
<div>
<main:TitleBar>
<button class="w3-bar-item w3-button w3-large w3-ripple w3-teal" @click='c.Navigate("/points", nil)'><i class="fas fa-arrow-left"></i></button>
<span class="w3-bar-item w3-large" vg-content='fmt.Sprintf("Point %s", c.Key())'></span>
</main:TitleBar>
<div class="w3-container w3-row-padding">
<div class="w3-third">
<label>Name</label>
<main:GeneralInputComponent InputType="text" :BindValue="GeneralInputStringPtr{&c.Name}"></main:GeneralInputComponent>
</div>
<div class="w3-third">
<label>Point 1 preview</label>
<main:PointViewComponent :Width="300" :Height="300" :Site="c.site" :PointKey="c.Key()"></main:PointViewComponent>
</div>
<div class="w3-third">
<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>
</div>