Struct google_fusiontables2::PolygonStyle[][src]

pub struct PolygonStyle {
    pub stroke_color_styler: Option<StyleFunction>,
    pub stroke_weight: Option<i32>,
    pub stroke_opacity: Option<f64>,
    pub stroke_weight_styler: Option<StyleFunction>,
    pub fill_color_styler: Option<StyleFunction>,
    pub fill_color: Option<String>,
    pub stroke_color: Option<String>,
    pub fill_opacity: Option<f64>,
}

Represents a PolygonStyle within a StyleSetting

This type is not used in any activity, and only used as part of another schema.

Fields

Column-value, gradient or buckets styler that is used to determine the border color and opacity.

Width of the polyon border in pixels.

Opacity of the polygon border: 0.0 (transparent) to 1.0 (opaque).

Column-value or bucket styler that is used to determine the width of the polygon border.

Column-value, gradient, or bucket styler that is used to determine the interior color and opacity of the polygon.

Color of the interior of the polygon in #RRGGBB format.

Color of the polygon border in #RRGGBB format.

Opacity of the interior of the polygon: 0.0 (transparent) to 1.0 (opaque).

Trait Implementations

impl Default for PolygonStyle
[src]

Returns the "default value" for a type. Read more

impl Clone for PolygonStyle
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PolygonStyle
[src]

Formats the value using the given formatter. Read more

impl Part for PolygonStyle
[src]

Auto Trait Implementations