22 lines
636 B
HTML
22 lines
636 B
HTML
<html>
|
|
<head>
|
|
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
|
<title>Gest366</title>
|
|
<script type="text/javascript" src="http://maps.google.com/maps/api/js?key="></script>
|
|
<script type="text/javascript">
|
|
var initialize = function() {
|
|
var options = { zoom: 10,
|
|
center: latlng,
|
|
mapTypeId: google.maps.MapTypeId.ROADMAP
|
|
};
|
|
var map = new google.maps.Map(document.getElementById('map'), options);
|
|
}
|
|
window.onload = initialize;
|
|
</script>
|
|
</head>
|
|
<body style="margin:0; padding:0;">
|
|
<div id="map" style="width:100%; height:100%"></div>
|
|
</body>
|
|
</html>
|