-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (50 loc) · 2.45 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
<title>Stations App</title>
<link rel="stylesheet" href="https://js.arcgis.com/4.18/esri/themes/light/main.css" />
<link rel="stylesheet" href="style.css" />
<script src="https://js.arcgis.com/4.18/"></script>
<script src="main.js"></script>
</head>
<body>
<div id="viewDiv"></div>
<section id="stationingForm" class="container esri-widget">
<section>
<label for="routeID">RouteID: </label>
<select aria-invalid="false" name="routeID" id="routeID"
id="stationId" maxlength="">
<option>Select a Route</option>
</select>
<section id="locations">
<legend>Locations</legend>
<label for="milepost">Linear Measure: </label>
<input type="text" name="milepost" id="milepost" value="288.5">
<button name="getstation" id="getStation">
Get Reference Post</button>
<label for="station">Reference Post: </label>
<input type="text" name="station" id="station" value="140+00.0671">
<button name="getMP" id="getMP">Get Linear Measure</button>
<label for="offet">Offset (feet): </label>
<input type="text" name="offset" id="offset" value="0" readonly>
<button name="getLocation" id="getLocation">Get Current Location</button>
</section>
</section>
</section>
<section id="extrnalLinks" class="container esri-widget">
<legend>Locations</legend>
<label for="exrouteId">RouteID: </label>
<input type="text" name="exrouteId" id="exrouteId" readonly>
<label for="exMeasure">Linear Measure: </label>
<input type="text" name="exMeasure" id="exMeasure" readonly>
<label for="exLat">Latitude: </label>
<input type="text" name="exLat" id="exLat" readonly>
<label for="exLon">Longitude: </label>
<input type="text" name="exLon" id="exLon" readonly>
<button name="openRoadview" id="openRoadview">Roadview Explorer</button>
<button name="openGoogleStreet" id="openGoogleStreet">Google Street View</button>
</section>
</body>
</html>