UNPKG

@openglobus/og

Version:

[openglobus](https://www.openglobus.org/) is a javascript/typescript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers, and 3D objects. It uses the WebGL technology, open source, and completely fr

19 lines (18 loc) 646 B
import { Framebuffer } from '../webgl/Framebuffer'; import { Handler } from "../webgl/Handler"; import { Material } from "../layer/Material"; import { Planet } from "../scene/Planet"; export declare class VectorTileCreator { protected _width: number; protected _height: number; protected _planet: Planet; protected _framebuffer: Framebuffer | null; protected _queue: Material[]; protected _handler: Handler | null; constructor(planet: Planet, width?: number, height?: number); init(): void; frame(): void; add(material: Material): void; remove(material: Material): void; get queueSize(): number; }