var AZR;
if (!AZR) AZR = {};
if (!AZR) AZR = new Object();

AZR.coordinate1 = 41.064857;
AZR.coordinate2 = 29.049225;
AZR.zoomOpt= 7;
AZR.mapElement = "divHarita";
AZR.makerIcon = "http://www.kaydet.com/GeneralImages/bubbleicon_red.png";
AZR.map=null;
AZR.maker=null;
AZR.il = null;
AZR.ilce=null;
AZR.html=null;
AZR.draggerj = 0;
AZR.makerPoint=null;
AZR.html=[];
AZR.makerTitle = '';
AZR.balonAc = 0;
AZR.makerData = [];
AZR.clickedBalon=null;

function initialize() {
	AZR.map = new GMap2(document.getElementById(AZR.mapElement));
	AZR.map.setMapType(G_NORMAL_MAP); //G_NORMAL_MAP
	AZR.makerPoint = new GLatLng(AZR.coordinate1, AZR.coordinate2);
	AZR.map.setCenter( AZR.makerPoint, AZR.zoomOpt);
	
	AZR.map.setUIToDefault();
  
}

AZR.createMakerHandle = function(data){
	
   	if(data && data!="" && data!=null && data.length>0){
   		AZR.bubbleDropDown = false;
   		var i=0;
	   
		for(i=0; i<data.length;i++){
			html_ = AZR.htmlTemplate(data[i].firma,data[i].location,data[i].sektor,data[i].xyxy,data[i].logo); 
			if(data[i].coord1!=""){ AZR.setCoordinates(data[i].coord1,data[i].coord2);}
			
		   	AZR.createMaker(AZR.getPoint(AZR.coordinate1,AZR.coordinate2),html_,data[i].firma,i,data[i].xyxy);
			
		}
	}
};

AZR.createMaker = function(point,html,title_,i,uri){
	var icon = new GIcon(G_DEFAULT_ICON);
	icon.image =(AZR.makerIconDegis)?AZR.makerIcon_red:AZR.makerIcon;
	AZR.makerData[i] = new GMarker(point, {draggable: false,"title":title_,'icon':icon,'language':'tr'});
   	AZR.map.addOverlay(AZR.makerData[i]);
   	AZR.html[i]='<div style="width:auto; height:auto;">'+html+'</div>';
   	GEvent.addListener(AZR.makerData[i], "click", function()
	{  
	 	AZR.zoomOpt= 13;
	 	AZR.setZoom(intervalMy);
		AZR.makerData[i].openInfoWindowHtml(AZR.html[i]);
		//if(intervalMy!=null) {clearInterval(intervalMy);}
	 });
	
};



AZR.getPoint = function(x,y){
	var pnt = new GLatLng(x,y);
	return pnt;
};

AZR.setZoom = function(){
	AZR.map.setZoom(AZR.zoomOpt);
};


AZR.setCoordinates = function(coord1,coord2){
	AZR.coordinate1  = coord1;
	AZR.coordinate2 = coord2;
};


var vI=0;
AZR.htmlTemplate=function(firma,location,sektor,xyxy,logo,kategori){
	
	var htm='<div style="width: 300px; margin-top: 10px;"><table width="100%"><tr><td colspan="2"><div style="color: #008efc;width:300px;font-weight: bold;"><a href="'+xyxy+'" target="_blank">'+firma+'</a></div></td></tr><tr><td valign="top"><a href="'+xyxy+'"  target="_blank">'+logo+'</a><br><div style="font-size:10px;width:175px;">'+sektor+'</div><div style="font-size:10px;width:175px;">'+location+'</div></td><td valign="top"><div style="color: #008efc;margin-bottom:10px; width:175px;font-weight: bold;"><a href="'+xyxy+'"  target="_blank"><img src="http://www.kaydet.com/GeneralImages/haritada-goster.png" border="0"/></a><br><a href="'+xyxy+'"  target="_blank">Yorum yaz</a><br><a href="'+xyxy+'"  target="_blank">Puan ver</a><br><a href="'+xyxy+'"  target="_blank">Kampanyalar</a></div></td></table></div>';
	vI++;
	return htm;
};

window.onunload=function(){
	GUnload();
};