Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

maxzoom, minzoom, scheme #38

Merged
merged 4 commits into from
May 8, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions 3.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,31 @@ A text description of the tileset. The description can contain any legal charact

## 3.6 `grids`
## 3.7 `legend`

## 3.8 `maxzoom`

OPTIONAL. Default: 30. >= 0, <= 30.

An integer specifying the maximum zoom level. MUST be >= minzoom.

```JSON
{
"maxzoom": "11"
}
```

## 3.9 `minzoom`

OPTIONAL. Default: 0. >= 0, <= 30.

An integer specifying the minimum zoom level.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since maxzoom has "MUST be >= minzoom" do we want to include the same for minzoom? "MUST be <= maxzoom"


```JSON
{
"minzoom": "0"
}
```

## 3.10 `name`

OPTIONAL. Default: null.
Expand All @@ -82,6 +104,17 @@ A name describing the tileset. The name can contain any legal character. Impleme
```

## 3.11 `scheme`

OPTIONAL. Default: "xyz".

Either "xyz" or "tms". Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.

```JSON
{
"scheme": "xyz"
}
```

## 3.12 `template`
## 3.13 `tilejson`

Expand Down