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

📄 world.asp

📁 1985498mapxtremeforaspdemo.rar
💻 ASP
字号:
<!--#include file="..\lib\miConst.asp"-->
<!--#include file="..\lib\miDebug.asp"-->
<!--#include file="..\lib\miErrorSystem.asp"-->
<!--#include file="..\lib\miMapEngine.asp"-->
<!--#include file="..\lib\miMapMarker.asp"-->
<!--#include file="..\lib\miUtilities.asp"-->
<%
 Dim bResult

 '启动 MapX Server
 bResult = InitMapEngine(OBTAIN_FROM_BROKER,"HelloWorld")

 bResult = SetMapSize(980,889) '设置地图的大小,系统自带函数
 'bResult = SetMapGeoset("World Countries") '设置地图为World,系统自带函数
 bResult = SetMapTitleText("世界地图") '设置地图的标题,系统自带函数
 
 '生成图片,系统自带函数
 bResult = ExportMapToFile(miFormatGIF,"c:\world.gif")
 
 '退出 MapX Server
 bResult = UnInitMapEngine(RETURN_TO_BROKER)

%>
<html>
<body>
<img src="c:\world.gif">
</body>
</html>

⌨️ 快捷键说明

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