⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smiscustomevents.js

📁 使用ASP.NET 2.0 (c#) 实现的gis 的地图系统
💻 JS
字号:
//================================================================================ 
// SuperMap IS .NET 客户端程序,版权所有,北京超图地理信息技术有限公司,2000-2006。 
// 本程序只能在有效的授权许可下使用。未经许可,不得以任何手段擅自使用或传播。 
// 作者:			胡中南 
// 修改:	 
// 文件名:			SMISCustomEvents.js
// 功能:			自定义事件,供用户二次开发。
// 版本:			5.2.0.27731
// 最后修改时间:	2004-09-03 

// client script of SuperMap IS .NET. CopyRight(C)2000-2006 SuperMap GIS Technologies, Inc.
// This program can only be used when it is permitted by applicable law or authorized. It 
// can't be used or spreaded by any means without permission. 
// Author:          Hu Zhongnan
// Modified by:	 
// File name:		SMISCustomEvents.js
// Function:		Custom events, provided for develop use.
// Version:			5.2.0.27731
// Last modified:	2004-09-03
//================================================================================
 

/*-----------------------------------------------------------------------------
 *
 *			 Events about Action.
 *
 -----------------------------------------------------------------------------*/

// (CH) Action 将要开始时的事件。 //
// (EN) Fire when Action will execute 
function BeforeActionStart(map)
{
	//
	// 在这里添加用户代码 (English --- Put user code here )//
	//
	
	// (CH) 如果 return false,则将不执行ActionStart操作。 //
	// (EN) Do not execute ActionStart function, if returns false.
	return true;
}

// (CH) Action 开始之后的事件。  //
// (EN) Fire when Action is called 
function AfterActionStarted(map)
{
	//
	// 在这里添加用户代码  (English --- Put user code here )//
	//
}
 
// (CH) Action 将要停止时的事件。 
// (EN) Fire when Action will finish.  
function BeforeActionStop(map)
{
	//
	// 在这里添加用户代码  (English --- Put user code here )
	//
	
	// (CH) 如果 return false,则将不执行ActionStop操作。 
	// (EN) Do not execute ActionStart function, if returns false. 
	return true;
}

// (CH) Action 停止之后的事件。
// (EN) Fire after Action finishs.   
function AfterActionStopped(map)
{
	//
	// 在这里添加用户代码  (English --- Put user code here )
	//
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -