-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1.05 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
<html>
<head>
<title>google maps api</title>
<link rel="stylesheet" media="screen" href="event_map.css">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript">
// arrays to hold copies of the markers and html used by the side_bar
// because the function closure trick doesnt work there
var gmarkers = [];
var side_bar_html = "";
</script>
<script type="text/javascript" src="event_map.js"></script>
<script type="text/javascript" src="https://apis.google.com/js/plusone.js">
{lang: 'de'}
</script>
</head>
<body onload="initialize_event_map()">
<h1>google maps api</h1>
<div id="event_map" style="width:60%; height:80%"></div>
<div id="event_sidebar" style="width:20%; height:80%"></div>
<p>+1:</p>
<g:plusone href="http://www.inquant.de"></g:plusone>
<div id="foo" style="width:20%; height:80%"></div>
</body>
</html>