gxp.plugins.AddLayers
¶
-
class
gxp.plugins.
AddLayers
(config)¶ Plugin for removing a selected layer from the map. TODO Make this plural - selected layers
Config Options¶
Configuration properties in addition to those listed for Ext.util.Observable.
-
actions
Array
Custom actions for tools that do not provide their own. Array elements are expected to be valid Ext config objects or strings referencing a valid Ext component. Actions provided here may have additionalmenuText
andbuttonText
properties. The former will be used as text when the action is used in a menu. The latter will be conditionally used on buttons, only ifshowButtonText
is set to true. The nativetext
property will unconditionally be used for buttons. Optional, only needed to create custom actions.
-
actionTarget
Object
orString
orArray
Where to place the tool’s actions (e.g. buttons or menus)?In case of a string, this can be any string that references an
Ext.Container
property on the portal, or a unique id configured on a component.In case of an object, the object has a “target” and an “index” property, so that the tool can be inserted at a specified index in the target.
actionTarget can also be an array of strings or objects, if the action is to be put in more than one place (e.g. a button and a context menu item).
To reference one of the toolbars of an
Ext.Panel
, ”.tbar”, ”.bbar” or ”.fbar” has to be appended. The default is “map.tbar”. The viewer’s main MapPanel can always be accessed with “map” as actionTarget. Set to null if no actions should be created.Some tools provide a context menu. To reference this context menu as actionTarget for other tools, configure an id in the tool’s outputConfig, and use the id with ”.contextMenu” appended. In the snippet below, a layer tree is created, with a “Remove layer” action as button on the tree’s top toolbar, and as menu item in its context menu:
{ xtype: "gxp_layertree", outputConfig: { id: "tree", tbar: [] } }, { xtype: "gxp_removelayer", actionTarget: ["tree.tbar", "tree.contextMenu"] }
If a tool has both actions and output, and you want to force it to immediately output to a container, set actionTarget to null. If you want to hide the actions, set actionTarget to false. In this case, you should configure a defaultAction to make sure that an action is active.
-
addActionMenuText
String
Text for add feed menu item (i18n).
-
addActionText
String
Text for the Add action. None by default.
-
addActionTip
String
Text for add action tooltip (i18n).
-
addButtonText
String
Text for add layers button (i18n).
-
addLayerSourceErrorText
String
Text for an error message when WMS GetCapabilities retrieval fails (i18n).
-
addServerText
String
Text for add server button (i18n).
-
autoActivate
Boolean
Set to false if the tool should be initialized without activating it. Default is true.
-
availableLayersText
String
Text for the available layers (i18n).
-
catalogSourceKey
String
When lazy layerRecords are created by the ‘Find Layers’ function, they can optionally be associated with another source. E.g. the ‘local’ source in GeoNode client.
-
controlOptions
Object
If this tool is associated with anOpenLayers.Control
then this is an optional object to pass to the constructor of the associatedOpenLayers.Control
.
-
createExpander
Function
Returns anExt.grid.RowExpander
. Can be overridden by applications/subclasses to provide a custom expander.
-
defaultAction
Number
Optional index of an action that should be active by default. Only works for actions that are aGeoExt.Action
instance.
-
doneText
String
Text for Done button (i18n).
-
expanderTemplateText
String
Text for the grid expander (i18n).
-
feeds
Object | Boolean
If provided, agxp.FeedSourceDialog
will be added as a menu option. This panel will be constructed using the provided config. By default, no feed functionality is provided.
-
findActionMenuText
String
Text for find menu item (i18n).
-
instructionsText
String
Text for additional instructions at the bottom of the grid (i18n). None by default.
-
layerSelectionText
String
Text for the layer selection (i18n).
-
nonUploadSources
Array
Ifupload
is enabled, the upload button will not be displayed for sources whose identifiers or URLs are in the provided array. By default, the upload button will make an effort to be shown for all sources with a url property.
-
outputAction
Number
Theactions
array index of the action that should trigger this tool’s output. Only valid ifactions
is configured. Leave this unconfigured if none of theactions
should trigger this tool’s output.
-
outputConfig
Object
Optional configuration for the output container. This may be useful to override the xtype (e.g. “window” instead of “gx_popup”), or to provide layout configurations when rendering to anoutputTarget
.
-
outputTarget
String
Where to add the tool’s output container? This can be any string that references anExt.Container
property on the portal, or “map” to access the viewer’s main map. If not provided, a window will be created. To reference one of the toolbars of anExt.Panel
, ”.tbar”, ”.bbar” or ”.fbar” has to be appended.
-
panelTitleText
String
Text for the layer title (i18n).
-
postUploadAction
String|Object
Either the id of a plugin that provides the action to be performed after an upload, or an object withplugin
andoutputConfig
properties. TheaddOutput
method of the plugin referenced by the provided id (or theplugin
property) will be called, with the providedoutputConfig
as argument. A usage example would be to open the Styles tab of the LayerProperties dialog for a WMS layer:postUploadAction: { plugin: "layerproperties", outputConfig: {activeTab: 2} }
-
relativeUploadOnly
Boolean
Ifupload
is enabled, only show the button for sources with relative URLs (e.g. “/geoserver”). Default istrue
.
-
search
Object | Boolean
If provided, agxp.CatalogueSearchPanel
will be added as a menu option. This panel will be constructed using the provided config. By default, no search functionality is provided.
-
searchText
String
Text for the search dialog title (i18n).
-
showButtonText
Show the
buttonText
an action is configured with, if used as a button. Default is false.
-
startSourceId
Integer
The identifier of the source that we should start with.
-
toggleGroup
String
If this tool should be radio-button style toggled with other tools, this string is to identify the toggle group.
-
untitledText
String
Text for an untitled layer (i18n).
-
upload
Object | Boolean
If provided, agxp.LayerUploadPanel
will be made accessible from a button on the Available Layers dialog. This panel will be constructed using the provided config. By default, no upload button will be added to the Available Layers dialog.
-
uploadRoles
Array
Roles authorized to upload layers. Default is [“ROLE_ADMINISTRATOR”]
-
uploadSource
String
id of a WMS source (:class:`gxp.plugins.WMSSource’) backed by a GeoServer instance that all uploads will be sent to. If provided, an Upload menu item will be shown in the “Add Layers” button menu.
-
uploadText
String
Text for upload button (only renders ifupload
is provided).
Public Properties¶
Public properties in addition to those listed for Ext.util.Observable.
-
AddLayers.
active
¶ Boolean
Is the tool currently active?
Public Methods¶
Public methods in addition to those listed for Ext.util.Observable.
-
AddLayers.
activate
()¶ Returns: Boolean
true when this tool was activatedActivates this tool.
-
AddLayers.
addActions
()¶
-
AddLayers.
addOutput
()¶ Parameters: config – Object
configuration for theExt.Component
to be added to theoutputTarget
. Properties of this configuration will be overridden by the applicationsoutputConfig
for the tool instance. Tool plugins that want to reuse their output (after being closed by a window or crumb panel) can also provide anExt.Component
instance here, if it was previously created withaddOutput
.Returns: Ext.Component
The component added to theoutputTarget
.Adds output to the tool’s
outputTarget
. This method is meant to be called and/or overridden by subclasses.
-
AddLayers.
createUploadButton
()¶ Parameters: Cls – Function
The class to use for creating the button. If not provided, anExt.Button
instance will be created.Ext.menu.Item
would be another option.If this tool is provided an
upload
property, a button will be created that launches a window with agxp.LayerUploadPanel
.
-
AddLayers.
deactivate
()¶ Returns: Boolean
true when this tool was deactivatedDeactivates this tool.
-
AddLayers.
getState
()¶ :return {Object} Gets the configured tool state. Overwrite in subclasses to return anything other than a copy of the initialConfig property.
-
AddLayers.
removeOutput
()¶ Removes all output created by this tool
-
AddLayers.
showCapabilitiesGrid
()¶ Shows the window with a capabilities grid.
-
AddLayers.
showCatalogueSearch
()¶ Shows the window with a search panel.
-
AddLayers.
showFeedDialog
()¶ Shows the window with a dialog for adding feeds.
Events¶
Events in addition to those listed for Ext.util.Observable.
-
activate
Fired when the tool is activated.
Listener arguments: * tool -
gxp.plugins.Tool
the activated tool
-
deactivate
Fired when the tool is deactivated.
Listener arguments: * tool -
gxp.plugins.Tool
the deactivated tool
-
sourceselected
Fired when a new source is selected.
Listener arguments:
- tool -
gxp.plugins.AddLayers
This tool. - source -
gxp.plugins.LayerSource
The selected source.
- tool -