Do embedded GeoJSON styles work with Mapbox GL?
Is it possible to utilize the built-in properties attribute of a GeoJSON data source to automatically style a Mapbox GL map without having to pre-specify a style? I have a use case where I dynamically load in GeoJSON LineString data that needs to be a particular color and it already has style data built in: {"properties": {"color": "#ffff33"... Right now, I have a rather inelegant setup where the relevant color is parsed out, translated into a style, and added to the map upon every load: $scope.patternPropToStyle = function(props) { var id = 'pattern' + props.pid; var style = { "id": id, "type