mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-02-24 02:41:15 +00:00
17 lines
377 B
JSON
17 lines
377 B
JSON
{ "type": "Feature", "properties": {
|
|
"null": null,
|
|
"compound": {
|
|
"string": "string",
|
|
"number": 10,
|
|
"null": null,
|
|
"true": true,
|
|
"false": false,
|
|
"array": [
|
|
"string", 10, null, true, false, [ 1, 2, 3 ], { "this": "that" }
|
|
],
|
|
"emptylist": [],
|
|
"emptyhash": {},
|
|
"nest": { "something": "else" }
|
|
}
|
|
}, "geometry": { "type": "Point", "coordinates": [ 0,0 ]} }
|