mirror of
https://github.com/Doodle3D/doodle3d-connect.git
synced 2024-11-05 07:03:24 +01:00
f247f1b3dc
Needed for offline development
39 lines
709 B
HTML
39 lines
709 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Map</title>
|
|
<script>
|
|
function initialize() {
|
|
var myLatlng = new google.maps.LatLng( 51.520838, -0.140261 );
|
|
var myOptions = {
|
|
zoom: 15,
|
|
center: myLatlng,
|
|
mapTypeId: google.maps.MapTypeId.ROADMAP
|
|
}
|
|
var map = new google.maps.Map( document.getElementById( "map_canvas" ), myOptions );
|
|
}
|
|
</script>
|
|
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
#map_canvas {
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body onload="initialize()">
|
|
|
|
<div id="map_canvas"></div>
|
|
|
|
</body>
|
|
</html>
|