-
Notifications
You must be signed in to change notification settings - Fork 1
/
map.html
30 lines (30 loc) · 1.12 KB
/
map.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>USA National Meeting Search</title>
<!-- Demo scripts -->
<link href='https://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" type="text/javascript"></script>
<link href="jsmaps/jsmaps.css" rel="stylesheet" type="text/css" />
<script src="jsmaps/jsmaps-libs.js" type="text/javascript"></script>
<script src="jsmaps/jsmaps-panzoom.js"></script>
<script src="jsmaps/jsmaps.min.js" type="text/javascript"></script>
<script src="maps/usa.js" type="text/javascript"></script>
<link href="map.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 align="center" style="margin-top: 20px;">USA Nationwide Meeting Search</h1>
<div class="container" style="width: 930px; margin: 0 auto;">
<div class="jsmaps-wrapper" id="usa-map"></div>
</div>
<script type="text/javascript">
$(function() {
$('#usa-map').JSMaps({
map: 'usa',
stateClickAction: 'url',
});
});
</script>
</body>
</html>