The Open Saved View tool opens a map document in the mobile application. This tool can be found in the toolbar in Mapbook:
Saved Views are selected in the Open Saved View dialog.
How to use Saved Views buttons:
1) Click on the ‘Open Saved View’ tool. The Open Saved View dialog opens, displaying available maps. The first saved view in the list is automatically selected.
2) To select a different saved view in the list, tap/click the Saved View or the ‘Move Up/Move Down’ tools to move the selection cursor in the list.
3) To open the selected Saved View in the map display, tap/click the ‘Open Document’ tool or double-tap/click the Saved View in the list.
Configuring Saved Views:
For SavedViews, verify that you have this tag enabled in the <Paths> section of your GoSyncMobileConfiguration.xml:
<SavedViewXMLPath>$data\MobileConfiguration\SavedViews.xml</SavedViewXMLPath>
For Saved Views, there are two options for configuration. The 1st option allows you to pick from a list of predefined MXD documents, as shown in the above Saved Views UI. This method is ideal for user’s to quickly access commonly used map views. If this is the preferred method, the below configuration can be used in the GoSyncMobileConfiguration.xml:
<!– Saved Views tool, replaces Open File if used –>
<Tool name=”CommandNewFile_NewFile”>
<caption>Open File</caption>
<category>Command</category>
<image>Open</image>
<image_large>Open_large</image_large>
<style>image</style>
<tag>ControlsOpenDocCommand2</tag>
<Assembly>Tadpole.GoSync.Mapbook.SavedViews.dll</Assembly>
<TypeName>Tadpole.GoSync.Mapbook.SavedViews.OpenSavedView</TypeName>
</Tool>
The second option allows you to browse to a specific MXD versus using the Saved Views window. This is done by commenting out the Saved Views tag and uncommenting out the Open File tool tags also contained in the GoSyncMobileConfiguration.xml:
<!– Open File tool, replaces Saved Views if used –>
<Tool name=”CommandNewFile_NewFile”>
<caption>Open File</caption>
<category>Command</category>
<image>Open</image>
<image_large>Open_large</image_large>
<style>image</style>
<tag>ControlsOpenDocCommand</tag>
<progID>esriControlToolsGeneric.ControlsOpenDocCommand</progID>
</Tool>









