The VB.NET version of the Web Mapping Application defaults to Pan as the active tool but the Zoom In button is highlighed on the toolbar.
Last Published: August 25, 2014No Product Found
Bug ID Number
NIM035683
Submitted
May 28, 2008
Last Modified
June 5, 2024
Applies to
No Product Found
Version found
9.3
Version Fixed
N/A
Status
Fixed
The bug has been fixed. See the Version Fixed and Additional Information, if applicable, for more information.
Workaround
In the VB template, edit the Toolbars CurrentTool property to use "MapPan". Alternatively, the Default.aspx could be edited directly to change CurrentTool="MapZoomIn to "CurrentTool="MapPan".If the user wants the default tool to be MapZoomIn they can also leave the Toolbars CurrentTool property as is and use JavaScript to set the zoom in tool to be the default startup tool: var map = $find('Map1'); map.set_mouseMode(ESRI.ADF.UI.MouseMode.ZoomIn);