Skip to content

Commit

Permalink
Clarify that [minzoom, maxzoom) is a half-open range
Browse files Browse the repository at this point in the history
  • Loading branch information
jfirebaugh committed Jan 10, 2018
1 parent 5d29130 commit 5194093
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/style-spec/reference/v8.json
Expand Up @@ -540,13 +540,13 @@
"type": "number",
"minimum": 0,
"maximum": 24,
"doc": "The minimum zoom level on which the layer gets parsed and appears on."
"doc": "The minimum zoom level for the layer. At zoom levels less than the minzoom, the layer will be hidden."
},
"maxzoom": {
"type": "number",
"minimum": 0,
"maximum": 24,
"doc": "The maximum zoom level on which the layer gets parsed and appears on."
"doc": "The maximum zoom level for the layer. At zoom levels equal to or greater than the maxzoom, the layer will be hidden."
},
"filter": {
"type": "filter",
Expand Down

0 comments on commit 5194093

Please sign in to comment.