PROBLEM
When working in Data View, the Zoom In and Zoom Out tools may be slow. In addition, the area selection box may not start and end where designated.
MapTips is causing a problem with the data frame interaction tools, specifically Zoom In and Zoom Out. The problem increases as more visible layers are added with MapTips turned on.
A. In ArcMap, click Tools > Macros > Visual Basic Editor.
B. Open the Project ThisDocument module and paste in the code.
C. Run the macro.
Code:
Public Sub MapTipsOff()
Dim pMxDoc As IMxDocument
Dim pMap As IMap
Dim i As Integer
Dim pLayer As ILayer
Set pMxDoc = Application.Document
Set pMap = pMxDoc.FocusMap
For i = 0 To pMap.LayerCount - 1
Set pLayer = pMap.Layer(i)
pLayer.ShowTips = False
Next i
End Sub
Article ID:000002881
Get help from ArcGIS experts
Download the Esri Support App