Ne treba ti API key za V3...
HTML kôd:
<div id="markers" style="height:300px"></div>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
function gmaps(){
var myLatlng = new google.maps.LatLng(44.703250,20.416741);
var myOptions = {
zoom: 7,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.HYBRID
}
var map = new google.maps.Map(document.getElementById("markers"), myOptions);
var marker = new google.maps.Marker({
position: new google.maps.LatLng(44.703250,20.416741),
title: "",
icon: "http://www.google.com/intl/en_us/mapfiles/ms/icons/red-dot.png"
});
marker.setMap(map);
}
gmaps();
</script>