@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) • 503 B
TypeScript
import { Control } from "./Control";
import type { IControlParams } from "./Control";
import { HeightRuler } from "./heightRuler/HeightRuler";
interface IRulerSwitcherParams extends IControlParams {
ignoreTerrain?: boolean;
}
/**
* Activate ruler
*/
export declare class RulerSwitcher extends Control {
ruler: HeightRuler;
constructor(options?: IRulerSwitcherParams);
oninit(): void;
onactivate(): void;
ondeactivate(): void;
protected _createMenuBtn(): void;
}
export {};