-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (58 loc) · 2.15 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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="lib/css/leaflet.css" />
<link rel="stylesheet" href="lib/css/style.css" />
<link rel="stylesheet" href="lib/css/bootstrap.min.css" />
<script src="lib/js/jquery-1.11.0.min.js"></script>
<script src="lib/js/bootstrap.min.js"></script>
<script src="lib/js/leaflet.js"></script>
<script src="lib/js/map.js"></script>
<head>
<body>
<div id="map" class="fltLeft"></div>
<div id="showList" class="fltLeft">
<fieldset>
<span class="label label-default">Recently Added Locations</span>
<ul></ul>
</fieldset>
</div>
<!--<a class="btn fltLeft" data-toggle="modal" href="#mapPopUpModal" >Launch Modal</a>-->
<div class="modal fade" id="mapPopUpModal" tabindex="-1" role="dialog" aria-labelledby="mapPopUpModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="mapPopUpModalLabel">Add Place</h4>
</div>
<div class="modal-body">
<div class="input-group">
<span class="input-group-addon">N</span>
<input type="text" class="form-control" placeholder="Name">
</div>
<br/>
<div class="input-group">
<span class="input-group-addon">P
</span>
<input type="text" id="showAddress" class="form-control" value="" placeholder="Place">
<span class="input-group-btn">
<button class="btn btn-default" id="reverseLookup" type="button">Go!</button>
</span>
</div>
<br/>
<div class="input-group">
<span class="input-group-addon">L</span>
<input type="text" id="latlongshow" class="form-control" placeholder="Lat/Long">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
<body>
<footer></footer>
</html>