Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<html>

<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=fa
lse"></script>
<script type="text/javascript">
function initializare() {
var coordonate = new google.maps.LatLng(46.76991,23.58844);
var setari = {
zoom: 16,
center: coordonate,
mapTypeControl: true,
mapTypeControlOptions: {style: google.maps.MapTypeContro
lStyle.DROPDOWN_MENU},
navigationControl: true,
navigationControlOptions: {style: google.maps.Navigation
ControlStyle.SMALL},
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var harta = new google.maps.Map(document.getElementById("spatiu_harta"), set
ari);
}
</script>
</head>
<body onload="initializare()">
<div id="spatiu_harta" style="width:700px; height:500px"></div>
</body>
</html>

You might also like