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

14 lines (13 loc) 361 B
import { Control } from "./Control"; import { DrawingControl } from "./drawing/DrawingControl"; /** * Activate drawing control */ export declare class DrawingSwitcher extends Control { drawingControl: DrawingControl; constructor(options?: {}); oninit(): void; onactivate(): void; ondeactivate(): void; protected _createMenu(): void; }