Zum Hauptinhalt gehen

Is is possible through a layers Visualization Options to make a polygon have an outline and no fill?

Kommentare

3 Kommentare

  • Yona Bystedt
    Hi,

     

    You can configure 100% transparency as an option here. Open the relevant configuration file (eg: desktop.json.js) and look for the "widgets" section (it's near the bottom).

     

    Here you should see configuration for a widget called "SymbologySettings". In here is the configuration for the transparency control:

     

      "transparency": { "min": 0, "max": 100, "value": 10, "step": 5 }, Just change the "max" value from 90 to 100 and you should be good to go.

     

     
    0
  • Aaron Nepple
    Jonathan, 

     

    Thank you for the prompt reply. That did the trick for me!

     

                  

     

    Aaron 
    0
  • Chris Roberts
    Hi Aaron

     

    Under the same widget for "fillstyles" I added a "none" style as below.  This seems to work well for me, and gives the user a No Fill style option.

     

     "fillStyles": [

     

                {

     

                  "style": "solid",

     

                  "label": "@language-symbology-settings-fill-style-solid"

     

                },

     

                {

     

                  "style": "forwarddiagonal",

     

                  "label": "@language-symbology-settings-fill-style-forward-diagonal"

     

                },

     

                {

     

                  "style": "backwarddiagonal",

     

                  "label": "@language-symbology-settings-fill-style-backward-diagonal"

     

                },

     

                {

     

                  "style": "cross",

     

                  "label": "@language-symbology-settings-fill-style-cross"

     

                },

     

                {

     

                  "style": "horizontal",

     

                  "label": "@language-symbology-settings-fill-style-horizontal"

     

                },

     

                {

     

                  "style": "vertical",

     

                  "label": "@language-symbology-settings-fill-style-vertical"

     

                },

     

                {

     

                  "style": "none",

     

                  "label": "None"

     

                }

     

              ]

     

    Cheers

     

    Chris
    0

Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.