﻿/*************************************************
* 引导图控件
* code by lzz ver1.0 update at 07-10-10
*************************************************/

var NavControl = Class.create();
Object.extend(NavControl.prototype, ControlBase.prototype);
NavControl.prototype._loadUI = function(){
    this.Body.src = this.Config._RealCityUIPath + 'Controls/NavControl.aspx';
    //this.LoadUI('NavControl');
};

//关闭事件
NavControl.prototype.onClose = function(){
};
//热点点击事件,type: 0:实体 1:企业
NavControl.prototype.onNavClick = function(type, id, x, y){  
};

//重载控件加载完毕后的事件
NavControl.prototype._loadComplete= function()
{
    this.Body.contentWindow.NavControl = this;
    this.onLoadComplete(this);
};

