﻿function TLabel(){}TLabel.prototype.initialize=function(c){this.parentMap=c;var d=document.createElement("span");d.setAttribute("id",this.id);d.innerHTML=this.content;document.body.appendChild(d);d.style.position="absolute";d.style.zIndex=1;if(this.percentOpacity){this.setOpacity(this.percentOpacity)}this.w=document.getElementById(this.id).offsetWidth;this.h=document.getElementById(this.id).offsetHeight;this.mapTray=c.getPane(G_MAP_MAP_PANE);this.mapTray.appendChild(d);if(!this.markerOffset){this.markerOffset=new GSize(0,0)}this.setPosition()};TLabel.prototype.setPosition=function(a){if(a){this.anchorLatLng=a}var b=this.parentMap.fromLatLngToDivPixel(this.anchorLatLng);var x=parseInt(b.x);var y=parseInt(b.y);with(Math){switch(this.anchorPoint){case"topLeft":break;case"topCenter":x-=floor(this.w/2);break;case"topRight":x-=this.w;break;case"midRight":x-=this.w;y-=floor(this.h/2);break;case"bottomRight":x-=this.w;y-=this.h;break;case"bottomCenter":x-=floor(this.w/2);y-=this.h;break;case"bottomLeft":y-=this.h;break;case"midLeft":y-=floor(this.h/2);break;case"center":x-=floor(this.w/2);y-=floor(this.h/2);break;default:break}}var d=document.getElementById(this.id);d.style.left=x-this.markerOffset.width+"px";d.style.top=y-this.markerOffset.height+"px"};TLabel.prototype.setOpacity=function(a){if(a<0){a=0}if(a>100){a=100}var e=a/100;var f=document.getElementById(this.id);if(typeof(f.style.filter)=="string"){f.style.filter="alpha(opacity:"+a+")"}if(typeof(f.style.KHTMLOpacity)=="string"){f.style.KHTMLOpacity=e}if(typeof(f.style.MozOpacity)=="string"){f.style.MozOpacity=e}if(typeof(f.style.opacity)=="string"){f.style.opacity=e}};GMap2.prototype.addTLabel=function(b){b.initialize(this)};GMap2.prototype.removeTLabel=function(c){var d=document.getElementById(c.id);this.getPane(G_MAP_MAP_PANE).removeChild(d);delete (d)};
