IDs used for DITA Map view item removal

You can remove DITA Map view items by using the related IDs in the trace log.

IDs for DITA Map view items are in the Processing [com.ixiasoft.dita.eclipse.gui.views.map.MapView] section of the trace log.

Processing [com.ixiasoft.dita.eclipse.gui.views.map.MapView] type=org.eclipse.swt.widgets.Label
	com.ixiasoft.dita.eclipse.actions.map.SetConditions ............: 
	com.ixiasoft.dita.eclipse.actions.map.SelectConditions .........: 
The trace log contains the type for all the items in the DITA Map view. To remove an item from the DITA Map view, enter its ID in a <removeditem> element and specify its type in the type attribute. For example, to remove the Set Conditions button from the DITA Map view, enter its ID and its type in the eclipseui.xml file as follows:
<section id="com.ixiasoft.dita.eclipse.gui.views.map.MapView">
   <removeditem id="com.ixiasoft.dita.eclipse.actions.map.SetConditions" 
                type="org.eclipse.swt.widgets.Label"/>
   ...