Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In order to prevent your custom plugins being lost when you upgrade your version of iShare GIS, custom plugins are kept under the \web\custom\plugins folder This folder must contain at least one XML file defining however many custom plugins are required.

In In order for iShare GIS to load your custom plugins, you will need to manually add a PluginViews section section, pointing to your XML fileboth the default iShareGIS.xml and your CustomPlugins.xml file, to any Map Source where you wish the plugins to be available as shown here.

Code Block
xml
xml
<MapSource version="200" guid="012345678-9abc-def0-1234-56789abcdef">
  <LayerGroups>
    ...
  </LayerGroups>
  <PluginViews>
    <PluginView>plugins/iShareGIS</PluginView>
	<PluginView>custom/plugins/CustomPlugins</PluginView>
  </PluginViews>
</MapSource>
Info
This will need to contain the path to the default iShare GIS plugins, as shown above, before the entry for your custom plugin xml.

The PluginView value (custom/plugins/CustomPlugins) is the path the to XML file (without the .xml extension) which will be read in and added to iShare GIS for this Map Source.

...