UNPKG

@polygonjs/plugin-mapbox

Version:

Mapbox plugin for the 3D engine https://polygonjs.com

16 lines (15 loc) 623 B
import { Object3D } from 'three'; import { LineSegments } from 'three'; import { BaseSopNodeType } from '@polygonjs/polygonjs/dist/src/engine/nodes/sop/_Base'; import { CoordinatesCollection } from './CoordinatesCollection'; export declare class FeatureConverter { private node; private name; private features; id: number | undefined; constructor(node: BaseSopNodeType, name: string, features: any[]); createObject(): Object3D | undefined; _createLine(coordinates_collection: CoordinatesCollection): LineSegments; private _createAllCoordinatesCollections; private _create_coordinates; }