-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (34 loc) · 2.25 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
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NYC Address and BIN Search</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.8.0/dist/leaflet.css" integrity="sha512-hoalWLoI8r4UszCkZ5kL8vayOGVae1oxXe/2A4AO6J9+580uKHDO3JdHb7NzwwzK5xr/Fs0W40kiNHxM9vyTtQ==" crossorigin=""/>
<link rel="stylesheet" href="https://unpkg.com/leaflet-contextmenu@1.4.0/dist/leaflet.contextmenu.min.css" integrity="sha512-AiWBM2PiPZkogKBj8Jss3MahJ+bRbSMebXUBwZMg+83vJTnZT/FXoxZrmpL+x9GbAYLWRuBZDqzhDt0Dk73qhw==" crossorigin=""/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<div class="leftSide">
<h1>NYC Address and BIN Search <span id="helpId"><a href="help.html">?</a></span></h1>
<div>
<input id="searchInputId" type="search" autofocus=true spellcheck=false size=66">
<button id="searchButtonId" type="button" onclick="doSearch();">Search</button>
</div>
<textarea id="searchLogTextareaId" readonly></textarea>
<div id="addressDivId"></div>
<div id="binDivId"></div>
<div id="bblDivId"></div>
<div id="hpdDivId"></div>
<div id="buildingClassDivId"></div>
<div><ul id="addressRangeListId"></ul></div>
</div>
<div id="slippyMapId"></div>
</div>
<div><table id="infoTableId"></table></div>
<script src="https://unpkg.com/parse-nyc-address@1.0.2/dist/parse-nyc-address.min.js" integrity="sha512-SSkGcC1jLqoXNbGy1W2SjhWIo/4WSdkYB93HYijUYL7ZJhomtStvYMGExOLHAHXEA4zOauypsW05PzSjystw3g==" crossorigin=""></script>
<script src="https://unpkg.com/leaflet@1.8.0/dist/leaflet.js" integrity="sha512-BB3hKbKWOc9Ez/TAwyWxNXeoV9c1v6FIeYiBieIWkpLjauysF18NzgR1MBNBXf8/KABdlkX68nAhlwcDFLGPCQ==" crossorigin=""></script>
<script src="https://unpkg.com/leaflet-contextmenu@1.4.0/dist/leaflet.contextmenu.min.js" integrity="sha512-8sfQf8cr0KjCeN32YPfjvLU2cMvyY1lhCXTMfpTZ16CvwIzeVQtwtKlxeSqFs/TpXjKhp1Dcv77LQmn1VFaOZg==" crossorigin=""></script>
<script src="app.js"></script>
</body></html>