@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) • 594 B
TypeScript
import { Control } from "./Control";
import type { IControlParams } from "./Control";
interface ISimpleSkyBackgroundParams extends IControlParams {
}
export declare class SimpleSkyBackground extends Control {
protected _colorOne: Float32Array;
protected _colorTwo: Float32Array;
constructor(options?: ISimpleSkyBackgroundParams);
get colorOne(): string;
get colorTwo(): string;
set colorOne(htmlColor: string);
set colorTwo(htmlColor: string);
oninit(): void;
onactivate(): void;
ondeactivate(): void;
protected _drawBackground(): void;
}
export {};