-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (53 loc) · 2.64 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>VA Waterways Map</title>
<link rel="stylesheet" type="text/css" href="http://js.arcgis.com/3.10/js/esri/css/esri.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="canonical" href="http://nodedevl.deq.virginia.gov/map/">
</head>
<body>
<div id="menuBar" class="border-box">
<div id="menuRight">
<img src="ajax-loader.gif" id="loading">
<button id="menuBtn">Overlays</button>
<a href="help.html" target="_Blank">Help</a>
</div>
<h1>Virginia Waterways Trip Planner</h1>
<input id="search" type="text" placeholder="Jump to address...">
</div>
<div id="menu" class="border-box">
<button data-layer="est" Title="Clickable Virginia Chesapeake Bay outlines with detailed water quality information">Estuaries</button>
<button data-layer="bath" Title="Show topographical features of bay floor">Bay Floor Contours</button>
<button data-layer="hosp" Title="Virginia hospitals">Hospitals</button>
<button data-layer="ramp" Title="Boat Ramps as reported by Department of Game and Inland Fisheries">DGIF Boat Ramps</button>
<button data-layer="imagery" Title="Most Recent Aerial Imagery from VGIN">Aerial Imagery</button>
<button data-layer="localities" Title="Virginia juristictional boundaries">Localities</button>
<button data-layer="nav" Title="Marine Navigation Charts for General Reference Only">Marine Navigation</button>
<button data-layer="road" Title="Road projects as reported by VDOT">Road Projects</button>
<button data-layer="radar" Title="NOAA Weather Radar">Weather Radar</button>
<button data-layer="tide" Title="NOAA Tide Predictions">Tide Predictions</button>
<button data-layer="stations" Title="Weather Stations">Weather Stations</button>
</div>
<div id="moonphase"><img id="moonimg"></div>
<div id="map">
</div>
<script src="http://js.arcgis.com/3.10compact"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.1/moment.min.js"></script>
<script src="map.js"></script>
<script src="menu.js"></script>
<script src="geocoding.js"></script>
<script src="info.js"></script>
<script src="fish.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54040147-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>