
function Textbox(position,text){this.position_=position;this.text_=text;}
Textbox.prototype=new GOverlay();Textbox.prototype.initialize=function(map){var div=document.createElement("div");div.style.position="absolute";div.innerHTML=this.text_;map.getPane(G_MAP_MAP_PANE).appendChild(div);this.map_=map;this.div_=div;}
Textbox.prototype.remove=function(){this.div_.parentNode.removeChild(this.div_);}
Textbox.prototype.copy=function(){return new Textbox(this.position_,this.text_);}
Textbox.prototype.redraw=function(force){if(!force)return;var c1=this.map_.fromLatLngToDivPixel(this.position_);var h=parseInt(this.div_.clientHeight);this.div_.style.left=(c1.x+h/4)+"px";this.div_.style.top=(c1.y-h/2)+"px";}