.. _mbstyle_reference: MBStyle reference ================= This section will detail the usage and syntax of the MBStyle language. As MBstyle is heavily modeled on `JSON `_, it may be useful to refer to the `JSON-Schema documentation `_ for basic syntax. For an extended reference to these styles check out the `Mapbox Style Specifications `_. Mapbox Styles Module -------------------- The **gs-mbstyle** module is an unsupported module that provides a parser/encoder to convert between Mapbox Styles and GeoServer style objects. These docs are under active development, along with the module itself. References: * https://www.mapbox.com/mapbox-gl-style-spec MapBox Types ^^^^^^^^^^^^ copied from the `MapBox Style Specification `_ Color Colors are written as JSON strings in a variety of permitted formats: HTML-style hex values, rgb, rgba, hsl, and hsla. Predefined HTML colors names, like yellow and blue, are also permitted. :: { "line-color": "#ff0", "line-color": "#ffff00", "line-color": "rgb(255, 255, 0)", "line-color": "rgba(255, 255, 0, 1)", "line-color": "hsl(100, 50%, 50%)", "line-color": "hsla(100, 50%, 50%, 1)", "line-color": "yellow" } Especially of note is the support for hsl, which can be easier to reason about than rgb(). Enum One of a fixed list of string values. Use quotes around values. :: { "text-transform": "uppercase" } String A string is basically just text. In Mapbox styles, you're going to put it in quotes. Strings can be anything, though pay attention to the case of text-field - it actually will refer to features, which you refer to by putting them in curly braces, as seen in the example below. :: { "text-field": "{MY_FIELD}" } Boolean Boolean means yes or no, so it accepts the values true or false. :: { "fill-enabled": true } Number A number value, often an integer or floating point (decimal number). Written without quotes. :: { "text-size": 24 } Array Arrays are comma-separated lists of one or more numbers in a specific order. For example, they're used in line dash arrays, in which the numbers specify intervals of line, break, and line again. :: { "line-dasharray": [2, 4] } Function ^^^^^^^^ The value for any layout or paint property may be specified as a function. Functions allow you to make the appearance of a map feature change with the current zoom level and/or the feature's properties. stops *Required (except for identity functions) array.* Functions are defined in terms of input and output values. A set of one input value and one output value is known as a "stop." property *Optional string* If specified, the function will take the specified feature property as an input. See *Zoom Functions and Property Functions* for more information. base *Optional number. Default is 1.* The exponential base of the interpolation curve. It controls the rate at which the function output increases. Higher values make the output increase more towards the high end of the range. With values close to 1 the output increases linearly. type *Optional enum. One of identity, exponential, interval, categorical* identity functions return their input as their output. exponential functions generate an output by interpolating between stops just less than and just greater than the function input. The domain must be numeric. interval functions return the output value of the stop just less than the function input. The domain must be numeric. categorical functions return the output value of the stop equal to the function input. default A value to serve as a fallback function result when a value isn't otherwise available. It is used in the following circumstances: * In categorical functions, when the feature value does not match any of the stop domain values. * In property and zoom-and-property functions, when a feature does not contain a value for the specified property. * In identity functions, when the feature value is not valid for the style property (for example, if the function is being used for a circle-color property but the feature property value is not a string or not a valid color). * In interval or exponential property and zoom-and-property functions, when the feature value is not numeric. If no default is provided, the style property's default is used in these circumstances. colorSpace *Optional enum. One of rgb, lab, hcl* The color space in which colors interpolated. Interpolating colors in perceptual color spaces like LAB and HCL tend to produce color ramps that look more consistent and produce colors that can be differentiated more easily than those interpolated in RGB space. *rgb* Use the RGB color space to interpolate color values *lab* Use the LAB color space to interpolate color values. *hcl* Use the HCL color space to interpolate color values, interpolating the Hue, Chroma, and Luminance channels individually. **Zoom Functions** allow the appearance of a map feature to change with map’s zoom level. Zoom functions can be used to create the illusion of depth and control data density. Each stop is an array with two elements: the first is a zoom level and the second is a function output value. :: { "circle-radius": { "stops": [ [5, 1], [10, 2] ] } } The rendered values of *color*, *number*, and *array* properties are intepolated between stops. *Enum*, *boolean*, and *string* property values cannot be intepolated, so their rendered values only change at the specified stops. There is an important difference between the way that zoom functions render for layout and paint properties. Paint properties are continuously re-evaluated whenever the zoom level changes, even fractionally. The rendered value of a paint property will change, for example, as the map moves between zoom levels 4.1 and 4.6. Layout properties, on the other hand, are evaluated only once for each integer zoom level. To continue the prior example: the rendering of a layout property will not change between zoom levels 4.1 and 4.6, no matter what stops are specified; but at zoom level 5, the function will be re-evaluated according to the function, and the property's rendered value will change. (You can include fractional zoom levels in a layout property zoom function, and it will affect the generated values; but, still, the rendering will only change at integer zoom levels.) **Property functions** allow the appearance of a map feature to change with its properties. Property functions can be used to visually differentate types of features within the same layer or create data visualizations. Each stop is an array with two elements, the first is a property input value and the second is a function output value. Note that support for property functions is not available across all properties and platforms at this time. :: { "circle-color": { "property": "temperature", "stops": [ [0, "blue"], [100, "red"] ] } } **Zoom-and-property functions** allow the appearance of a map feature to change with both its properties and zoom. Each stop is an array with two elements, the first is an object with a property input value and a zoom, and the second is a function output value. Note that support for property functions is not yet complete. :: { "circle-radius": { "property": "rating", "stops": [ [{"zoom": 0, "value": 0}, 0], [{"zoom": 0, "value": 5}, 5], [{"zoom": 20, "value": 0}, 0], [{"zoom": 20, "value": 5}, 20] ] } } Filter A filter selects specific features from a layer. A filter is an array of one of the following forms: **Existential Filters** ["has", *key*] *feature[key]* exists ["!has", *key*] *feature[key]* does not exist **Comparison Filters** ["==", *key, value*] equality: *feature[key] = value* ["!=", *key, value*] inequality: *feature[key] ≠ value* [">", *key, value*] greater than: *feature[key] > value* [">=", *key, value*] greater than or equal: *feature[key] ≥ value* ["<", *key, value*] less than: *feature[key] < value* ["<=", *key, value*] less than or equal: *feature[key] ≤ value* **Set Membership Filters** ["in", *key, v0, ..., vn*] set inclusion: *feature[key] ∈ {v0, ..., vn}* ["!in", *key, v0, ..., vn*] set exclusion: *feature[key] ∉ {v0, ..., vn}* **Combining Filters** ["all", *f0, ..., fn*] logical AND: *f0 ∧ ... ∧ fn* ["any", *f0, ..., fn*] logical OR: *f0 ∨ ... ∨ fn* ["none", *f0, ..., fn*] logical NOR: *¬f0 ∧ ... ∧ ¬fn* A *key* must be a string that identifies a feature property, or one of the following special keys: * "$type": the feature type. This key may be used with the "==", "!=", "in", and "!in" operators. Possible values are "Point", "LineString", and "Polygon". * "$id": the feature identifier. This key may be used with the "==", "!=", "has", "!has", "in", and "!in" operators. A *value* (and *v0, ..., vn* for set operators) must be a string, number, or boolean to compare the property value against. Set membership filters are a compact and efficient way to test whether a field matches any of multiple values. The comparison and set membership filters implement strictly-typed comparisons; for example, all of the following evaluate to false: 0 < "1", 2 == "2", "true" in [true, false]. The "all", "any", and "none" filter operators are used to create compound filters. The values *f0, ..., fn* must be filter expressions themselves. :: ["==", "$type", "LineString"] This filter requires that the class property of each feature is equal to either "street_major", "street_minor", or "street_limited". :: ["in", "class", "street_major", "street_minor", "street_limited"] The combining filter "all" takes the three other filters that follow it and requires all of them to be true for a feature to be included: a feature must have a class equal to "street_limited", its admin_level must be greater than or equal to 3, and its type cannot be Polygon. You could change the combining filter to "any" to allow features matching any of those criteria to be included - features that are Polygons, but have a different class value, and so on. :: [ "all", ["==", "class", "street_limited"], [">=", "admin_level", 3], ["!in", "$type", "Polygon"] ] MapBox Style Grammar ^^^^^^^^^^^^^^^^^^^^ *JSON does not allow for comments within the data therefore comments will be noted through the placement of the comment between open < and close > angle brackets. All properties are optional unless otherwise noted as Requried* Root Properties :: { "version": 8, "name": "Mapbox Streets", "sprite": "mapbox://sprites/mapbox/streets-v8", "glyphs": "mapbox://fonts/mapbox/{fontstack}/{range}.pbf", "sources": {...}, "layers": [...] } layers Layers are drawn in the order they appear in the layer array. Layers have two additional properties that determine how data is rendered: *layout* and *paint* Background Layer definition :: { "layers" : [ { "id": "backgroundcolor", "type": "background", "source": "test-source", "source-layer": "test-source-layer", "layout": { "visibility": "visible" }, "paint": { "background-opacity": 0.45, "background-color": "#00FF00" } } ] } *background-color* is disabled by the presence of *background-pattern* Fill Layer Definition :: { "layers": [ { "id": "testid", "type": "fill", "source": "geoserver-states", "source-layer": "states", "layout": { "visibility": "visible" }, "paint": { "fill-antialias": "true", "fill-opacity": 0.84, "fill-color": "#FF595E", "fill-outline-color":"#1982C4", "fill-translate": [20,20], "fill-translate-anchor": "map", "fill-pattern": } } ] } Line Layer Definition :: { "layers": [ { "id": "test-id", "type": "line", "source": "test-source", "source-layer": "test-source-layer", "layout": { "line-cap": "square", "line-join": "round", "line-mitre-limit": 2, "line-round-limit": 1.05, "visibility": "visible" }, "paint": { "line-color": "#0099ff", "line-opacity": 0.5, "line-translate": [3,3], "line-translate-anchor": "viewport", "line-width": 10, "line-gap-width": 8, "line-offset": 4, "line-blur": 2, "line-dasharray": [50, 50], "line-pattern": } } ], } Symbol Layer Definition :: { "layers": [ { "id": "test-id", "type": "symbol", "source": "test-source", "source-layer": "test-source-layer", "layout": { "symbol-placement": "", "symbol-spacing": "", "symbol-avoid-edges": "", "icon-allow-overlap": "", "icon-ignore-placement": "", "icon-optional": "", "icon-rotation-alignment": "", "icon-size": "", "icon-rotation-alignment": "", "icon-text-fit-padding": "", "icon-image": "", "icon-rotate": "", "icon-padding": "", "icon-keep-upright": "", "icon-offset": "", "text-pitch-alignment": "", "text-rotation-alignment": "", "text-field": "", "text-font": "", "text-size": "", "text-max-width": "", "text-line-height": "", "text-letter-spacing": "", "text-justify": "", "text-anchor": "", "text-max-angle": "", "text-rotate": "", "text-padding": "", "text-keep-upright": "", "text-transform": "", "text-offset": "", "text-allow-overlap": "", "text-ignore-placement": "", "text-optional": "", "visibility": "visible" }, "paint": { "icon-opacity": "", "icon-color": "", "icon-halo-color": "", "icon-halo-width": "", "icon-halo-blur": "", "icon-translate": "", "icon-translate-anchor": "", "text-opacity": "", "text-halo-color": "", "text-halo-width": "", "text-halo-blur": "", "text-translate": "", "text-translate-anchor": "" } } ], } Raster Layer Definition :: { "layers": [ { "id": "test-id", "type": "raster", "source": "test-source", "source-layer": "test-source-layer", "layout": { "visibility": "visible" }, "paint": { "raster-opacity": "", "raster-hue-rotate": "", "raster-brightness-min": "", "raster-brightness-max": "", "raster-saturation": "", "raster-contrast": "", "raster-fade-duration": "" } } ], } Circle Layer definition :: { "layers": [ { "id": "test-id", "type": "raster", "source": "test-source", "source-layer": "test-source-layer", "layout": { "visibility": "visible" }, "paint": { "circle-radius": "", "circle-color": "", "circle-blur": "", "circle-opacity": "", "circle-translate": "", "circle-translate-anchor": "", "circle-pitch-scale": "", "circle-stroke-width": "", "circle-stroke-color": "", "circle-stroke-opacity": "", } } ], } Fill-Extrusion Layer Definition :: { { "layers": [ { "id": "test-id", "type": "fill-extrusion", "source": "test-source", "source-layer": "test-source-layer", "layout": { "visibility": "visible" }, "paint": { "fill-extrusion-opacity": "", "fill-extrusion-color": "", "fill-extrusion-translate": "", "fill-extrusion-translate-anchor": "", "fill-extrusion-pattern": "", "fill-extrusion-height": "", "fill-extrusion-base": "" } } ], }