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

16 lines (15 loc) 432 B
import { Control } from "./Control"; import type { IControlParams } from "./Control"; interface IToggleWireframe extends IControlParams { isActive?: boolean; } /** * Planet GL draw mode(TRIANGLE_STRIP/LINE_STRING) changer. */ export declare class ToggleWireframe extends Control { protected _isActive: boolean; constructor(options?: IToggleWireframe); oninit(): void; toogleWireframe: () => void; } export {};