Skip to content

Commit

Permalink
add sdk support tables for hillshade layer properties (#6149)
Browse files Browse the repository at this point in the history
* add sdk support tables for hillshade layer properties

* remove mobile sdk beta support
  • Loading branch information
mollymerp authored and Anand Thakker committed Feb 13, 2018
1 parent 383a604 commit dc9b728
Showing 1 changed file with 42 additions and 6 deletions.
48 changes: 42 additions & 6 deletions src/style-spec/reference/v8.json
Original file line number Diff line number Diff line change
Expand Up @@ -3832,7 +3832,13 @@
"doc": "The direction of the light source used to generate the hillshading with 0 as the top of the viewport if `hillshade-illumination-anchor` is set to `viewport` and due north if `hillshade-illumination-anchor` is set to `map`.",
"function": "interpolated",
"zoom-function": true,
"transition": false
"transition": false,
"sdk-support": {
"basic functionality": {
"js": "0.43.0"
},
"data-driven styling": {}
}
},
"hillshade-illumination-anchor": {
"type": "enum",
Expand All @@ -3847,7 +3853,13 @@
}
},
"default": "viewport",
"doc": "Direction of light source when map is rotated."
"doc": "Direction of light source when map is rotated.",
"sdk-support": {
"basic functionality": {
"js": "0.43.0"
},
"data-driven styling": {}
}
},
"hillshade-exaggeration": {
"type": "number",
Expand All @@ -3857,31 +3869,55 @@
"maximum": 1,
"function": "interpolated",
"zoom-function": true,
"transition": true
"transition": true,
"sdk-support": {
"basic functionality": {
"js": "0.43.0"
},
"data-driven styling": {}
}
},
"hillshade-shadow-color": {
"type": "color",
"default": "#000000",
"doc": "The shading color of areas that face away from the light source.",
"function": "interpolated",
"zoom-function": true,
"transition": true
"transition": true,
"sdk-support": {
"basic functionality": {
"js": "0.43.0"
},
"data-driven styling": {}
}
},
"hillshade-highlight-color": {
"type": "color",
"default": "#FFFFFF",
"doc": "The shading color of areas that faces towards the light source.",
"function": "interpolated",
"zoom-function": true,
"transition": true
"transition": true,
"sdk-support": {
"basic functionality": {
"js": "0.43.0"
},
"data-driven styling": {}
}
},
"hillshade-accent-color": {
"type": "color",
"default": "#000000",
"doc": "The shading color used to accentuate rugged terrain like sharp cliffs and gorges.",
"function": "interpolated",
"zoom-function": true,
"transition": true
"transition": true,
"sdk-support": {
"basic functionality": {
"js": "0.43.0"
},
"data-driven styling": {}
}
}
},
"paint_background": {
Expand Down

0 comments on commit dc9b728

Please sign in to comment.