-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.52 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
<!doctype html>
<html>
<head>
<title>TREB Community Map Layers</title>
<link href="map.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="mapcontainer"></div>
<div id="layercontainer">
<div class="titleheader header"><div class="collapse" onclick="LayerControl.collapse()">V</div><span class="title">TREB Community Map Layers</span></div>
<div class="content" id="layermenu">
<div class="header"><span>View Layer:</span></div>
<ul>
<li><label><input type="checkbox" id="arealayer" name="area" onclick="LayerControl.toggleLayer(this)" onchange="LayerControl.toggleLayer(this)"/> Area</label></li>
<li><label><input type="checkbox" id="munilayer" name="muni" onclick="LayerControl.toggleLayer(this)" onchange="LayerControl.toggleLayer(this)"/> Municipalities</label></li>
<li><label><input type="checkbox" id="commulayer" name="comm" onclick="LayerControl.toggleLayer(this)" onchange="LayerControl.toggleLayer(this)"/> Communities</label></li>
<li><label><input type="checkbox" id="artlayer" name="art" onclick="LayerControl.toggleLayer(this)" onchange="LayerControl.toggleLayer(this)"/> MapArt</label></li>
</ul>
<div class="header"><span>Find Address, Postal Code, or Town:</span></div>
<input type="text" id="geosearch" /><button onclick="LayerControl.search()">Search</button>
</div>
</div>
<script src="index.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDoW78g_6iK0VQaF1RTo8Ng4yFpL9w_OGM&callback=LayerControl.init"></script>
</body>
</html>