UNPKG

bcgis-type

Version:

The SDK is based on Cesium for secondary development of 2, 3D all-in-one WebGis application framework, the framework optimizes the use of Cesium and add some additional features, designed for developers to quickly build WebGis applications.

44 lines (43 loc) 872 B
import MaterialProperty from "../../MaterialProperty"; /** * 发光线材质 * @noInheritDoc * @example * ```ts * let material = new BC.PolylineLightingMaterialProperty({ * color: BC.Color.WHITE, * }) * ``` */ declare class PolylineLightingMaterialProperty extends MaterialProperty { private _image; private _imageSubscription; /** * @internal * 图片 */ image: string; /** * 颜色 */ color: Cesium.Color; constructor(options?: { /** * 颜色 */ color: Cesium.Color; }); /** * @internal */ getType(time: any): string; /** * @internal */ getValue(time: any, result: any): any; /** * @internal */ equals(other: any): any; } export default PolylineLightingMaterialProperty;