added dot properties to fallback reference

This commit is contained in:
Carlos Matallín 2017-05-31 18:40:22 +02:00
parent b95510c4bb
commit 38597e581c

View File

@ -1758,6 +1758,85 @@ var _mapnik_reference_latest = {
"default-meaning": "previous values are discarded",
"doc": "A linear animation will discard previous values while a cumulative animation will accumulate them until it restarts"
}
},
"dot": {
"fill": {
"css": "dot-fill",
"default-value": "gray",
"doc": "The color of the area of the dot.",
"type": "color",
"expression":true,
"default-meaning": "The dot fill color is gray."
},
"opacity": {
"css": "dot-opacity",
"doc": "The overall opacity of the dot.",
"default-value": 1.0,
"default-meaning": "The opacity of the dot.",
"type": "float",
"expression":true
},
"width": {
"css": "dot-width",
"default-value": 1.0,
"doc": "The width of the dot in pixels.",
"type": "float",
"expression":true,
"default-meaning": "The marker width is 1 pixel."
},
"height": {
"css": "dot-height",
"default-value": 1.0,
"doc": "The height of the dot in pixels.",
"type": "float",
"expression":true,
"default-meaning": "The marker height is 1 pixels."
},
"comp-op": {
"css": "dot-comp-op",
"default-value": "src-over",
"default-meaning": "Add the current layer on top of other layers.",
"doc": "Composite operation. This defines how this layer should behave relative to layers atop or below it.",
"type": [
"clear",
"src",
"dst",
"src-over",
"dst-over",
"src-in",
"dst-in",
"src-out",
"dst-out",
"src-atop",
"dst-atop",
"xor",
"plus",
"minus",
"multiply",
"divide",
"screen",
"overlay",
"darken",
"lighten",
"color-dodge",
"color-burn",
"linear-dodge",
"linear-burn",
"hard-light",
"soft-light",
"difference",
"exclusion",
"contrast",
"invert",
"invert-rgb",
"grain-merge",
"grain-extract",
"hue",
"saturation",
"color",
"value"
]
}
}
},
"colors": {