A versatile and lightweight toolkit for building a simple web map.
This project is maintained by qqnluaq
This object defines the styling for a "vector"
layer.
The "style"
property can contain one of these objects or an array of many of these objects.
When multiple styles are defined, then each feature in the layer is rendered in each style successively. This is a way to build more complex styles.
If a point feature is being rendered, the "marker..."
properties are used. If the "markerUrl"
property isn’t defined, then a circle is rendered instead, using the "stroke..."
and "fill..."
properties. The circle radius will be half of the "strokeWidth"
property.
A style object contains is defined with these properties, which have these default values. Click on a property name for more information:
{ "stroke": true, "strokeColor": "#3388ff", "strokeWidth": 3, "strokeOpacity": 1, "strokeCap": "round", "strokeJoin": "round", "strokeDashes": null, "strokeDashOffset":null, "fill": false, "fillColor": "#3388ff", "fillOpacity": 0.2, "markerUrl": null, "markerSize": null, "markerOffset": null "shadowUrl": null, "shadowSize": null, }
"stroke": Boolean
If true
, then the line or border of the feature is styled according to the "stroke..."
properties.
The default value is true
.
"strokecolor": String
The CSS-style color code for the line or polygon outline.
"strokewidth": Number
Width of a line or polygon outline in pixels.
"strokeopacity": Number
The opacity of the line or polygon outline. The value is in range from 0 (transparent) to 1 (opaque).
"strokecap": String
The shape of the end cap on a line segment.
Can be one of: "butt"
, "round"
, or "square"
.
"strokejoin": String
The shape of the join between two line segments.
Can be one of: "miter"
, "round"
, or "bevel"
.
"strokedashes": String
A list of white space separated segment lengths that specify the size of alternating dashes and gaps.
"strokedashOffset": Number
An offset on the beginning of the associated dash array.
"fill": Boolean
If true
, then the interior of the feature is styled according to the "fill..."
properties.
The default value is false
.
"fillcolor": String
The CSS-style color code to use filling the polygon feature.
"fillopacity": Number
The opacity of the polygon fill. The value is in range from 0 (transparent) to 1 (opaque).
"markerurl": String
The URL to use for custom point marker symbol.
"markersize": Array
The size of the marker image, as an array [ width, height ].
"markeroffset": Array
The offset of the marker image from the origin, as an array [ left, top ].
"shadowurl": String
The URL to use for custom point marker shadow.
"shadowsize": Array
The size of the shadow image, as an array [ width, height ].