-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapTest.html
More file actions
40 lines (33 loc) · 1.08 KB
/
mapTest.html
File metadata and controls
40 lines (33 loc) · 1.08 KB
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
<html>
<head>
<script src="https://maps.googleapis.com/maps/api/js?client="410653272953-ltr4uss0l4ordiq262b8c11p7qluo0i8.apps.googleusercontent.com" type="text/javascript" ></script>
<script>
function initialize() {
var loadScript = function loadScript() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://maps.googleapis.com/maps/api/js?v=3?.exp' + '&signed_in=true&callback=initialize';
};
document.body.appendChild(script);
var mapOptions = {
center: { lat: -34.397, lng: 150.644},
zoom: 8
};
var map = new google.maps.Map(document.getElementById('script'), mapOption);
google.maps.event.addDomListener(window, 'load', initialize);
}
</script>
<head>
<body id="script">
<table id="load">
<div id="map-canvas" style="width: 100%; height: 100%">
<td>
<tr>Total # Expenses</tr>
</td>
<tr>
Months
</tr>
</div>
</table>
</body>
</html>