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) 598 B
import { Control, type IControlParams } from "../Control"; import { PolygonDrawingScene } from "./PolygonDrawingScene"; export interface IDrawingControlParams extends IControlParams { cornerStyle?: any; centerStyle?: any; outlineStyle?: any; fillStyle?: any; } declare class DrawingControl extends Control { protected _drawingScene: PolygonDrawingScene; constructor(options?: IDrawingControlParams); activatePolygonDrawing(): void; activateLineStringDrawing(): void; oninit(): void; onactivate(): void; ondeactivate(): void; } export { DrawingControl };