forked from lightningwhelk/Geoxml3-Map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.27 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>GeoXML3 Example Map</title>
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<link rel="stylesheet" type="text/css" href="css/map.css"/>
</head>
<body>
<div id="pagewidth" >
<div id="wrapper" class="clearfix">
<div id="maincol">
<div id="map"></div>
<div id="controls">
<form>
<fieldset>
<legend>Map Controls</legend>
<input type="checkbox" id="placemarktoggle" checked="checked" /><label for="placemarktoggle">Placemarks</label><br />
<input type="checkbox" id="polygontoggle" /><label for="polygontoggle">Polygons</label><br />
<input type="button" id="recenter" value="Recenter Map" />
</fieldset>
</form>
</div>
</div>
<div id="leftcol">
<img src="images/lightningwhelk.jpg" width="150" height="122" />
<ul id="placemarkList">
</ul>
</div>
</div>
</div>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="//maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="js/ProjectedOverlay.js"></script>
<script type="text/javascript" src="js/geoxml3.js"></script>
<script type="text/javascript" src="js/map.js"></script>
</body>
</html>