├── .eslintrc ├── .gitignore ├── .npmignore ├── API.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── STYLE.md ├── _config.mb-pages.yml ├── _config.yml ├── bin ├── gl-style-composite ├── gl-style-format ├── gl-style-migrate └── gl-style-validate ├── docs ├── _generate │ ├── generate.js │ ├── index.html │ └── item.html ├── _layouts │ └── default.html └── site.css ├── index.js ├── lib ├── composite.js ├── diff.js ├── error │ ├── parsing_error.js │ └── validation_error.js ├── format.js ├── migrate.js ├── util │ ├── extend.js │ ├── get_type.js │ └── unbundle_jsonlint.js ├── validate │ ├── latest.js │ ├── validate.js │ ├── validate_array.js │ ├── validate_boolean.js │ ├── validate_color.js │ ├── validate_constants.js │ ├── validate_enum.js │ ├── validate_filter.js │ ├── validate_function.js │ ├── validate_glyphs_url.js │ ├── validate_layer.js │ ├── validate_layout_property.js │ ├── validate_light.js │ ├── validate_number.js │ ├── validate_object.js │ ├── validate_paint_property.js │ ├── validate_source.js │ └── validate_string.js ├── validate_style.js └── validate_style.min.js ├── migrations ├── v7.js └── v8.js ├── minify.js ├── package.json ├── reference ├── latest.js ├── latest.min.js ├── v6.json ├── v6.min.json ├── v7.json ├── v7.min.json ├── v8.json └── v8.min.json └── test ├── composite.js ├── diff.js ├── fixture ├── bad-color.input.json ├── bad-color.output.json ├── constants-v7.input.json ├── constants-v7.output.json ├── constants-v8.input.json ├── constants-v8.output.json ├── extrakeys.input.json ├── extrakeys.output.json ├── filters.input.json ├── filters.output.json ├── functions.input.json ├── functions.output.json ├── invalidjson.input.json ├── invalidjson.output.json ├── layers.input.json ├── layers.output.json ├── light.input.json ├── light.output.json ├── malformed-glyphs-type.input.json ├── malformed-glyphs-type.output.json ├── malformed-glyphs.input.json ├── malformed-glyphs.output.json ├── map-properties.input.json ├── map-properties.output.json ├── metadata.input.json ├── metadata.output.json ├── missing-glyphs.input.json ├── missing-glyphs.output.json ├── missing-sprite.input.json ├── missing-sprite.output.json ├── no-sources.input.json ├── no-sources.output.json ├── pitch.input.json ├── pitch.output.json ├── properties.input.json ├── properties.output.json ├── required.input.json ├── required.output.json ├── root-properties.input.json ├── root-properties.output.json ├── sources.input.json ├── sources.output.json ├── text-font.input.json ├── text-font.output.json ├── unknown-keys-nested.input.json ├── unknown-keys-nested.output.json ├── v6.input.json ├── v6.output.json └── v7-migrate │ ├── style-basic.input.json │ └── style-basic.output.json ├── format.js ├── migrate.js ├── migrations ├── v7.js └── v8.js ├── spec.js └── validate.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | node_modules 3 | npm-debug.log 4 | /docs/index.html 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/.npmignore -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/API.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/README.md -------------------------------------------------------------------------------- /STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/STYLE.md -------------------------------------------------------------------------------- /_config.mb-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/_config.mb-pages.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/_config.yml -------------------------------------------------------------------------------- /bin/gl-style-composite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/bin/gl-style-composite -------------------------------------------------------------------------------- /bin/gl-style-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/bin/gl-style-format -------------------------------------------------------------------------------- /bin/gl-style-migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/bin/gl-style-migrate -------------------------------------------------------------------------------- /bin/gl-style-validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/bin/gl-style-validate -------------------------------------------------------------------------------- /docs/_generate/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/docs/_generate/generate.js -------------------------------------------------------------------------------- /docs/_generate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/docs/_generate/index.html -------------------------------------------------------------------------------- /docs/_generate/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/docs/_generate/item.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/docs/site.css -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/index.js -------------------------------------------------------------------------------- /lib/composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/composite.js -------------------------------------------------------------------------------- /lib/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/diff.js -------------------------------------------------------------------------------- /lib/error/parsing_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/error/parsing_error.js -------------------------------------------------------------------------------- /lib/error/validation_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/error/validation_error.js -------------------------------------------------------------------------------- /lib/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/format.js -------------------------------------------------------------------------------- /lib/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/migrate.js -------------------------------------------------------------------------------- /lib/util/extend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/util/extend.js -------------------------------------------------------------------------------- /lib/util/get_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/util/get_type.js -------------------------------------------------------------------------------- /lib/util/unbundle_jsonlint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/util/unbundle_jsonlint.js -------------------------------------------------------------------------------- /lib/validate/latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/latest.js -------------------------------------------------------------------------------- /lib/validate/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate.js -------------------------------------------------------------------------------- /lib/validate/validate_array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_array.js -------------------------------------------------------------------------------- /lib/validate/validate_boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_boolean.js -------------------------------------------------------------------------------- /lib/validate/validate_color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_color.js -------------------------------------------------------------------------------- /lib/validate/validate_constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_constants.js -------------------------------------------------------------------------------- /lib/validate/validate_enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_enum.js -------------------------------------------------------------------------------- /lib/validate/validate_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_filter.js -------------------------------------------------------------------------------- /lib/validate/validate_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_function.js -------------------------------------------------------------------------------- /lib/validate/validate_glyphs_url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_glyphs_url.js -------------------------------------------------------------------------------- /lib/validate/validate_layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_layer.js -------------------------------------------------------------------------------- /lib/validate/validate_layout_property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_layout_property.js -------------------------------------------------------------------------------- /lib/validate/validate_light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_light.js -------------------------------------------------------------------------------- /lib/validate/validate_number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_number.js -------------------------------------------------------------------------------- /lib/validate/validate_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_object.js -------------------------------------------------------------------------------- /lib/validate/validate_paint_property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_paint_property.js -------------------------------------------------------------------------------- /lib/validate/validate_source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_source.js -------------------------------------------------------------------------------- /lib/validate/validate_string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate/validate_string.js -------------------------------------------------------------------------------- /lib/validate_style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate_style.js -------------------------------------------------------------------------------- /lib/validate_style.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/lib/validate_style.min.js -------------------------------------------------------------------------------- /migrations/v7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/migrations/v7.js -------------------------------------------------------------------------------- /migrations/v8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/migrations/v8.js -------------------------------------------------------------------------------- /minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/minify.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/package.json -------------------------------------------------------------------------------- /reference/latest.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./v8.json'); 2 | -------------------------------------------------------------------------------- /reference/latest.min.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./v8.min.json'); 2 | -------------------------------------------------------------------------------- /reference/v6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/reference/v6.json -------------------------------------------------------------------------------- /reference/v6.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/reference/v6.min.json -------------------------------------------------------------------------------- /reference/v7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/reference/v7.json -------------------------------------------------------------------------------- /reference/v7.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/reference/v7.min.json -------------------------------------------------------------------------------- /reference/v8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/reference/v8.json -------------------------------------------------------------------------------- /reference/v8.min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/reference/v8.min.json -------------------------------------------------------------------------------- /test/composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/composite.js -------------------------------------------------------------------------------- /test/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/diff.js -------------------------------------------------------------------------------- /test/fixture/bad-color.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/bad-color.input.json -------------------------------------------------------------------------------- /test/fixture/bad-color.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/bad-color.output.json -------------------------------------------------------------------------------- /test/fixture/constants-v7.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/constants-v7.input.json -------------------------------------------------------------------------------- /test/fixture/constants-v7.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/constants-v7.output.json -------------------------------------------------------------------------------- /test/fixture/constants-v8.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/constants-v8.input.json -------------------------------------------------------------------------------- /test/fixture/constants-v8.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/constants-v8.output.json -------------------------------------------------------------------------------- /test/fixture/extrakeys.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/extrakeys.input.json -------------------------------------------------------------------------------- /test/fixture/extrakeys.output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/fixture/filters.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/filters.input.json -------------------------------------------------------------------------------- /test/fixture/filters.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/filters.output.json -------------------------------------------------------------------------------- /test/fixture/functions.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/functions.input.json -------------------------------------------------------------------------------- /test/fixture/functions.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/functions.output.json -------------------------------------------------------------------------------- /test/fixture/invalidjson.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/invalidjson.input.json -------------------------------------------------------------------------------- /test/fixture/invalidjson.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/invalidjson.output.json -------------------------------------------------------------------------------- /test/fixture/layers.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/layers.input.json -------------------------------------------------------------------------------- /test/fixture/layers.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/layers.output.json -------------------------------------------------------------------------------- /test/fixture/light.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/light.input.json -------------------------------------------------------------------------------- /test/fixture/light.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/light.output.json -------------------------------------------------------------------------------- /test/fixture/malformed-glyphs-type.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/malformed-glyphs-type.input.json -------------------------------------------------------------------------------- /test/fixture/malformed-glyphs-type.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/malformed-glyphs-type.output.json -------------------------------------------------------------------------------- /test/fixture/malformed-glyphs.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/malformed-glyphs.input.json -------------------------------------------------------------------------------- /test/fixture/malformed-glyphs.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/malformed-glyphs.output.json -------------------------------------------------------------------------------- /test/fixture/map-properties.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/map-properties.input.json -------------------------------------------------------------------------------- /test/fixture/map-properties.output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/fixture/metadata.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/metadata.input.json -------------------------------------------------------------------------------- /test/fixture/metadata.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/metadata.output.json -------------------------------------------------------------------------------- /test/fixture/missing-glyphs.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/missing-glyphs.input.json -------------------------------------------------------------------------------- /test/fixture/missing-glyphs.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/missing-glyphs.output.json -------------------------------------------------------------------------------- /test/fixture/missing-sprite.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/missing-sprite.input.json -------------------------------------------------------------------------------- /test/fixture/missing-sprite.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/missing-sprite.output.json -------------------------------------------------------------------------------- /test/fixture/no-sources.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/no-sources.input.json -------------------------------------------------------------------------------- /test/fixture/no-sources.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/no-sources.output.json -------------------------------------------------------------------------------- /test/fixture/pitch.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/pitch.input.json -------------------------------------------------------------------------------- /test/fixture/pitch.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/pitch.output.json -------------------------------------------------------------------------------- /test/fixture/properties.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/properties.input.json -------------------------------------------------------------------------------- /test/fixture/properties.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/properties.output.json -------------------------------------------------------------------------------- /test/fixture/required.input.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /test/fixture/required.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/required.output.json -------------------------------------------------------------------------------- /test/fixture/root-properties.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/root-properties.input.json -------------------------------------------------------------------------------- /test/fixture/root-properties.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/root-properties.output.json -------------------------------------------------------------------------------- /test/fixture/sources.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/sources.input.json -------------------------------------------------------------------------------- /test/fixture/sources.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/sources.output.json -------------------------------------------------------------------------------- /test/fixture/text-font.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/text-font.input.json -------------------------------------------------------------------------------- /test/fixture/text-font.output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/fixture/unknown-keys-nested.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/unknown-keys-nested.input.json -------------------------------------------------------------------------------- /test/fixture/unknown-keys-nested.output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/fixture/v6.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/v6.input.json -------------------------------------------------------------------------------- /test/fixture/v6.output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /test/fixture/v7-migrate/style-basic.input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/v7-migrate/style-basic.input.json -------------------------------------------------------------------------------- /test/fixture/v7-migrate/style-basic.output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/fixture/v7-migrate/style-basic.output.json -------------------------------------------------------------------------------- /test/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/format.js -------------------------------------------------------------------------------- /test/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/migrate.js -------------------------------------------------------------------------------- /test/migrations/v7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/migrations/v7.js -------------------------------------------------------------------------------- /test/migrations/v8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/migrations/v8.js -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/spec.js -------------------------------------------------------------------------------- /test/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jingsam/mapbox-gl-style-spec/HEAD/test/validate.js --------------------------------------------------------------------------------