-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (30 loc) · 1.38 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>GUI</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="leaflet.css">
<script type="text/javascript" src="leaflet.js"></script>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="demo_dgram.js"></script>
</head>
<body onload="myFunction();">
<div class="grid-container">
<div id="map"></div>
<div class="item2">
<h1>Inputs</h1>
  IP : <input type="text" id="ip" size="20" value="IP" onfocus="this.value=''"></input><br>
Port: <input type="text" id="port" size="20" value="Port" onfocus="this.value=''"></input><br>
<input type="text" id="lat1" size="20" value="Latitude" onfocus="this.value=''"></input>
<input type="text" id="long1" size="20" value="Longitude" onfocus="this.value=''"></input><br><br>
<input type="text" id="lat2" size="20" value="Latitude" onfocus="this.value=''"></input>
<input type="text" id="long2" size="20" value="Longitude" onfocus="this.value=''"></input><br><br>
<button id="button" onclick="getInput();">Start</button>
</div>
<div class="item3">3</div>
<div id="item4">4</div>
</div>
</body>
</html>