forked from googlearchive/js-v2-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·68 lines (68 loc) · 2.57 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
58
59
60
61
62
63
64
65
66
67
68
<!--
Copyright 2008 Google Inc.
Licensed under the Apache License, Version 2.0:
http://www.apache.org/licenses/LICENSE-2.0
-->
<html>
<head>
<title>My Maps for developers</title>
<link rel="stylesheet" href="slides.css" />
<link rel="SHORTCUT ICON" href="favicon.ico" />
<script
type="text/javascript"
src="http://ditu.google.com/?file=api&v=2.x&key=ABQIAAAAzr2EBOXUKnm_jVnk0OJI7xQGj0PqsCtxKvarsoS-iqLdqZSKfxRfHupBSkUYXfT0GTt95nHf-rkeQQ">
</script>
<script
type="text/javascript"
src="http://gmaps-utility-library.googlecode.com/svn/trunk/markermanager/release/src/markermanager.js">
</script>
<script
type="text/javascript"
src="http://www.google.com/apis/maps/include/prettify.js">
</script>
<script type="text/javascript" src="slides/new.js"></script>
<script type="text/javascript" src="slides.js"></script>
<script type="text/javascript">
var map;
</script>
</head>
<body onload="startSlideShow()">
<!-- The frame used to measure the screen size -->
<div id="frame" class="frame"></div>
<!-- The node that holds slide squares -->
<div id="slidecontrols" class="slidecontrols"></div>
<!-- The node that holds the map -->
<div id="map" class="map"></div>
<div id="curtain" class="curtain"></div>
<!-- The node used to show the title -->
<div id="central" class="central"></div>
<!-- The node used to show screen shots -->
<div id="screenshot" class="screenshot" onclick="hideScreenshot()"></div>
<!-- Screen shot shadow -->
<div id="shadow" class="shadow"></div>
<!-- The content part of the slide, as in, not a map -->
<div id="content" class="content">
<!-- The slide title -->
<div id="title" class="title"></div>
<!-- The node that holds the text -->
<div id="text" class="text">
<div class="filler"></div>
<div id="points" class="points"></div>
</div>
<!-- The node that holds the code -->
<div id="code" class="code">
<div class="filler"></div>
<!-- The node holding the live code -->
<div class="livecode" id="livecode">
<textarea id="editor" class="editor" rows="11" wrap="off"
onkeydown="return handleEditKeys(event)"></textarea><br/>
<input type="button" id="run" class="run" value="Run!" onclick="runCode()"/>
</div>
<!-- The node that holds code samples -->
<div class="samplecode" id="samplecode"></div>
</div>
</div>
<!-- The footer -->
<div id="footer" class="footer"></div>
</body>
</html>