/*
	google maps için javascript
*/

// haritayı yükle
function loadmap(address) {
  if (GBrowserIsCompatible()) {

    showAddress(address);
    
   // map.setCenter(new GLatLng(41.004986,39.728279), 13);
  }
}	

// adresi bul
function showAddress(address) {

	var map = new GMap2(document.getElementById("map"));
	var geocoder = new GClientGeocoder(); 
 	
	geocoder.getLatLng(address,
    function(point) {
      if (!point) {
        alert(address + " bulunamadı!");
      } else {
        map.setCenter(point, 13);
        map.addControl(new GSmallMapControl());
        var marker = new GMarker(point,{draggable: false});
       //marker.enableDragging();
        map.addOverlay(marker);
        
        //map.setCenter(new GLatLng(41.004986,39.728279), 18);
        map.setZoom(18);
        //marker.openInfoWindowHtml(address);
      }
    }
  )
 }	
