28 lines
968 B
HTML
28 lines
968 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=AIzaSyDP5rbot-m9rDDOnlsL2ntDuS7MrVx5E8w"></script>
|
||
|
<script type="text/javascript">
|
||
|
var initialize = function() {
|
||
|
var latlng5 = new google.maps.LatLng(45.956367,12.661452);
|
||
|
var options = { zoom: 10,
|
||
|
center: latlng5,
|
||
|
mapTypeId: google.maps.MapTypeId.ROADMAP
|
||
|
};
|
||
|
var map = new google.maps.Map(document.getElementById('map'), options);
|
||
|
var pinImage = new google.maps.MarkerImage("http://www.googlemapsmarkers.com/v1/60cbcb/");
|
||
|
var marker = new google.maps.Marker({ position: latlng5,
|
||
|
map: map,
|
||
|
icon: pinImage,
|
||
|
title: '1-PIZZATO MASSIMO - VIA GALILEO - UDINE' });
|
||
|
}
|
||
|
window.onload = initialize;
|
||
|
</script>
|
||
|
</head>
|
||
|
<body style="margin:0; padding:0;">
|
||
|
<div id="map" style="width:100%; height:100%"></div>
|
||
|
</body>
|
||
|
</html>
|