geostyler-style
    Preparing search index...

    Interface BaseSymbolizer

    A Symbolizer describes the style representation of geographical data.

    interface BaseSymbolizer {
        color?: string | GeoStylerStringFunction;
        kind: SymbolizerKind;
        opacity?: number | GeoStylerNumberFunction;
        visibility?: boolean | GeoStylerBooleanFunction;
    }

    Hierarchy (View Summary)

    Index

    Properties

    color?: string | GeoStylerStringFunction

    A color defined as a hex-color string.

    Describes the type of the kind of the Symbolizer.

    opacity?: number | GeoStylerNumberFunction

    Determines the total opacity for the Symbolizer. A value between 0 and 1. 0 is none opaque and 1 is full opaque.

    visibility?: boolean | GeoStylerBooleanFunction

    Defines whether the Symbolizer should be visibile or not.