-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (19 loc) · 922 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
#map_canvas { height: 100% }
#info { color: #ffffff; border:1px solid white; background-color:#000000; opacity:0.7; border-radius:5px; -moz-border-radius:5px; position:absolute; top:10%; left:50%; width:300px; z-index:1000; }
#info p { padding:5px; margin:0; }
</style>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript" src="/gr"></script>
</head>
<body onload="Greitti.initialize()">
<div id="info"><p>Mouseover the pins for info</p></div>
<div id="map_canvas" style="width:100%; height:100%"></div>
</body>
</html>