-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (30 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Geo</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/style.css') }}">
<link rel="stylesheet" href="{{ url_for('static',filename='libraries/leaflet/leaflet.css') }} " />
</head>
<body>
<div id="mySidenav" class="sidenav">
<button type="button" class="btn btn-default btn-sm" onclick="onRefresh()">
<span class="glyphicon glyphicon-refresh"></span> Refresh
</button>
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div style="overflow-x:auto;">
<h4>Zip with Probability in Sorted Order</h4>
<table id="myDynamicTable">
</table>
</div>
</div>
<span style="font-size:30px;cursor:pointer;position: relative;z-index: 5;top: 113px;left: 15px;" onclick="openNav()">☰</span>
<div id="mapid"></div>
<!-- <script src="{{ url_for('static',filename='js/orlando_boundary.js') }}"></script> -->
<script src="{{ url_for('static',filename='js/orlando_outside_boundary.js') }}"></script>
<script src="{{ url_for('static',filename='js/orlando_polygons.js') }}"></script>
<script src="{{ url_for('static',filename='libraries/jquery.min.js') }}"></script>
<script src="{{ url_for('static',filename='libraries/leaflet/leaflet.js') }}"></script>
<script src="{{ url_for('static',filename='js/mapscript.js') }}"></script>
</body>
</html>