-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
39 lines (34 loc) · 972 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Page Title</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<p>Drag the marker to a location on the map and set input values.</p>
<div id="map-canvas"></div>
<label>Street
<input type="text" id="street" name="street" />
</label>
<label>Locality
<input type="text" id="locality" name="locality" />
</label>
<label>Region
<input type="text" id="region" name="region" />
</label>
<label>Country
<input type="text" id="country" name="country" />
</label>
<label>Latitude
<input type="text" id="latitude" name="latitude" />
</label>
<label>Longitude
<input type="text" id="longitude" name="longitude" />
</label>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Prod / built version -->
<script src="/js/bundle.js"></script>
</body>
</html>