API / geotoolkit / attributes / ColoredStyle / ColoredStyle
attributes.ColoredStyle.ColoredStyle
Type Aliases
Type Aliases
Ƭ Options: Object
color in CSS form or properties object
| Name | Type | Description |
|---|---|---|
color? | string | RgbaColor | HsvColor | HlsColor | color in CSS form |
mixin? | RgbaColor | null | mixin color that will be mixed with current color (if exists) |
shadow? | ShadowIn | JSON for displaying shadow |
Ƭ OptionsOut: Object
properties
| Name | Type | Description |
|---|---|---|
color | string | RgbaColor | The attribute color |
mixin | RgbaColor | null | mixin color that is mixed with current color (if exists) |
shadow? | Shadow | Define shadow options |
Ƭ Shadow: Object
Shadow options
| Name | Type | Description |
|---|---|---|
blur | number | shadow blur |
color | string | shadow color |
enable | boolean | check if shadow is enable or not |
offsetx | number | shadow offset in x direction |
offsety | number | shadow offset in y direction |
Ƭ ShadowIn: Partial<Merge<Shadow, { color?: string | RgbaColor }>>
data