Zooming out to an extereme scale will fail with an 'Invalid arguement' error
上次发布: August 25, 2014ArcGIS Server (.NET)
漏洞 ID 编号
NIM039387
已提交
October 17, 2008
上次修改时间
April 2, 2025
适用范围
ArcGIS Server (.NET)
找到的版本
9.3
操作系统
Windows OS
操作系统版本
XP
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
No Public Explanation
解决办法
Insert the following code in the Default.aspx of the application and adjust the minZoom and maxZoom properties for the spatial reference and scale of your data.<script language="javascript" type="text/javascript"> Sys.Application.add_init(function() { $find('Map1').set_minZoom(0.1); $find('Map1').set_maxZoom(1); });</script>For more details on these properties, see the following:<a href="http://resources.esri.com/help/9.3/ArcGISServer/adf/dotnet/NET_ADFJS/html/Properties_T_J_ESRI_ADF_UI_MapBase.htm#seeAlsoToggle" target="_blank">http://resources.esri.com/help/9.3/ArcGISServer/adf/dotnet/NET_ADFJS/html/Properties_T_J_ESRI_ADF_UI_MapBase.htm#seeAlsoToggle</a>