sketcheditors

This configuration is optional when using the plugin Gis.

  • Documentation

  • YAML Format

  • XML Format

Fill relevant inputs (blue boxes) and click the blue bars on the left to copy XML configuration snippets.
<sketchEditorsConfiguration
>
required

Define custom symbol editors for sketch layer

<customSketchEditor
<id
>
required
string

Unique identifier for the custom sketch symbol editor

</id>
<printName
>
required
string

Name displayed for the custom sketch symbol editor

</printName>
<createUrl
>
required
anyURI

The absolute URL to open the custom sketch symbol editor to create a new symbol

</createUrl>
<createIcon
>
required
string

Path to the icon within Cadenza theming folder to be shown for creating a new symbol with the editor

</createIcon>
<editUrl
>
required
anyURI

The absolute URL to open the custom sketch symbol editor to edit an existing symbol

</editUrl>
<editIcon
>
required
string

Path to the icon within Cadenza theming folder to be shown for editing an existing symbol with the editor

</editIcon>
>
optionalmax. unbounded
</customSketchEditor>
</sketchEditorsConfiguration>
This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
cadenzaconfig:
  settings:
    sketcheditors:
      customSketchEditor:
      - id: "text"
        printName: "text"
        createUrl: "text"
        createIcon: "text"
        editUrl: "text"
        editIcon: "text"
      - id: "text"
        printName: "text"
        createUrl: "text"
        createIcon: "text"
        editUrl: "text"
        editIcon: "text"

Filename: sketcheditors-config.xml

This is a generated sample file with fake data and all the possible options shown, refer to the Documentation tab for what combinations are valid and what is required or not.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<sketchEditorsConfiguration>
  <customSketchEditor>
    <id>text</id>
    <printName>text</printName>
    <createUrl>text</createUrl>
    <createIcon>text</createIcon>
    <editUrl>text</editUrl>
    <editIcon>text</editIcon>
  </customSketchEditor>
  <customSketchEditor>
    <id>text</id>
    <printName>text</printName>
    <createUrl>text</createUrl>
    <createIcon>text</createIcon>
    <editUrl>text</editUrl>
    <editIcon>text</editIcon>
  </customSketchEditor>
</sketchEditorsConfiguration>