<html xmlns="http://www.w3.org/1999/xhtml">
<head>
web Sitenizde yayınlarken google map den APIKEY almanız gerekir. Yoksa haritayı göstermezsiniz.
url="www.codekodu.com";
<script src="http://maps.google.com/maps?file=api&v=1&key=APIKEY" type="text/javascript"></script>
</head>
<body>
<div id="map" style="width: 400px; height: 300px"></div>
<script type="text/javascript">
var map = new GMap(document.getElementById("map"));
map.centerAndZoom(new GPoint(30.5206,39.7767), 3);
</script>
</body>
</html>
|