Skip to content

Commit

Permalink
Pretty-print the JSON block
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-f committed Oct 11, 2016
1 parent 6663d75 commit 062347e
Showing 1 changed file with 35 additions and 1 deletion.
36 changes: 35 additions & 1 deletion 1.3/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,38 @@ have the following metadata table:
* `type`: `overlay`
* `version`: `2`
* `scheme`: `tms`
* `json`: `{"vector_layers": [ { "id": "tl_2016_us_county", "description": "Census counties", "minzoom": 0, "maxzoom": 5, "fields": {"ALAND": "Number", "AWATER": "Number", "COUNTYFP": "String", "GEOID": "String", "MTFCC": "String", "NAME": "String", "NAMELSAD": "String", "STATEFP": "String"} }, { "id": "tl_2016_us_primaryroads", "description": "Census primary roads", "minzoom": 0, "maxzoom": 5, "fields": {"FULLNAME": "String", "LINEARID": "String", "MTFCC": "String", "RTTYP": "String"} } ] }`
* `json`:
```
{
"vector_layers": [
{
"id": "tl_2016_us_county",
"description": "Census counties",
"minzoom": 0,
"maxzoom": 5,
"fields": {
"ALAND": "Number",
"AWATER": "Number",
"COUNTYFP": "String",
"GEOID": "String",
"MTFCC": "String",
"NAME": "String",
"NAMELSAD": "String",
"STATEFP": "String"
}
},
{
"id": "tl_2016_us_primaryroads",
"description": "Census primary roads",
"minzoom": 0,
"maxzoom": 5,
"fields": {
"FULLNAME": "String",
"LINEARID": "String",
"MTFCC": "String",
"RTTYP": "String"
}
}
]
}
```

0 comments on commit 062347e

Please sign in to comment.