UNPKG

@vertigis/viewer-spec

Version:

VertiGIS Viewer Specification

55 lines (45 loc) 1.14 kB
# command: bulk-editing.add Description: Adds features to the bulk editing session. Used to stage features for updating. Web only. Inputs: `BulkEditingArgs` BulkEditingArgs properties: ```json { "features": { "description": "Features to use for the command/operation." }, "maps": { "description": "Map(s) to use for the command/operation." } } ``` --- # command: bulk-editing.display Description: Displays the bulk editing interface for a given set of features. Updates the UI to show editable attributes for the provided features. Web only. Inputs: `BulkEditingArgs` BulkEditingArgs properties: ```json { "features": { "description": "Features to use for the command/operation." }, "maps": { "description": "Map(s) to use for the command/operation." } } ``` --- # command: bulk-editing.remove Description: Removes features from the bulk editing session. Web only. Inputs: `BulkEditingArgs` BulkEditingArgs properties: ```json { "features": { "description": "Features to use for the command/operation." }, "maps": { "description": "Map(s) to use for the command/operation." } } ``` ---