Spaces:
Sleeping
Sleeping
File size: 1,271 Bytes
4a288a7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
import validateStyleMin from './validate_style.min';
import {v8} from './style-spec';
import readStyle from './read_style';
/**
* Validate a Mapbox GL style against the style specification.
*
* @private
* @alias validate
* @param {Object|String|Buffer} style The style to be validated. If a `String`
* or `Buffer` is provided, the returned errors will contain line numbers.
* @param {Object} [styleSpec] The style specification to validate against.
* If omitted, the spec version is inferred from the stylesheet.
* @returns {Array<ValidationError|ParsingError>}
* @example
* var validate = require('mapbox-gl-style-spec').validate;
* var style = fs.readFileSync('./style.json', 'utf8');
* var errors = validate(style);
*/
export default function validateStyle(style, styleSpec = v8) {
let s = style;
try {
s = readStyle(s);
} catch (e) {
return [e];
}
return validateStyleMin(s, styleSpec);
}
export const source = validateStyleMin.source;
export const light = validateStyleMin.light;
export const layer = validateStyleMin.layer;
export const filter = validateStyleMin.filter;
export const paintProperty = validateStyleMin.paintProperty;
export const layoutProperty = validateStyleMin.layoutProperty;
|