-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-interact.html
43 lines (32 loc) · 1.25 KB
/
test-interact.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Google Maps</title>
<script src="http://maps.google.com/maps?file=api&v=2&sensor=false&key=ABQIAAAAPDUET0Qt7p2VcSk6JNU1sBSM5jMcmVqUpI7aqV44cW1cEECiThQYkcZUPRJn9vy_TWxWvuLoOfSFBw" type="text/javascript"></script>
<style type="text/css">
#tooltip {
background-color:#e0e0e0;
font-weight:bold;
border:1px #006699 solid;
height: 80px;
width:200px;
text-align: center;
}
</style>
</head>
<body onunload="GUnload()">
<div id="map" style="width: 550px; height: 450px">
<div id="tooltip">
</div>
<noscript><b>JavaScript must be enabled in order for you to use Google Maps.</b>
However, it seems JavaScript is either disabled or not supported by your browser.
To view Google Maps, enable JavaScript by changing your browser options, and then
try again.
</noscript>
</div>
<script src="interact.js" type="text/javascript">
runTestOverlays();
</script>
</body>
</html>