nova-header-nav / node_modules /@plotly /mapbox-gl /src /data /evaluation_feature.js
Leon4gr45's picture
Upload folder using huggingface_hub (part 8)
fcf3b03 verified
Raw
History Blame Contribute Delete
882 Bytes
// @flow
import loadGeometry from './load_geometry';
type EvaluationFeature = {
+type: 1 | 2 | 3 | 'Unknown' | 'Point' | 'MultiPoint' | 'LineString' | 'MultiLineString' | 'Polygon' | 'MultiPolygon',
+id?: any,
+properties: {[_: string]: any},
+patterns?: {[_: string]: {"min": string, "mid": string, "max": string}},
geometry: Array<Array<Point>>
};
/**
* Construct a new feature based on a VectorTileFeature for expression evaluation, the geometry of which
* will be loaded based on necessity.
* @param {VectorTileFeature} feature
* @param {boolean} needGeometry
* @private
*/
export default function toEvaluationFeature(feature: VectorTileFeature, needGeometry: boolean): EvaluationFeature {
return {type: feature.type,
id: feature.id,
properties:feature.properties,
geometry: needGeometry ? loadGeometry(feature) : []};
}