@greenmice/ngx-cesium
Version:
Angular library for working with Cesium.
30 lines (29 loc) • 1.54 kB
TypeScript
import { BasicDesc } from '../../services/basic-desc/basic-desc.service';
import { LayerService } from '../../services/layer-service/layer-service.service';
import { ComputationCache } from '../../services/computation-cache/computation-cache.service';
import { CesiumProperties } from '../../services/cesium-properties/cesium-properties.service';
import { RectangleDrawerService } from '../../services/drawers/rectangle-dawer/rectangle-drawer.service';
import * as i0 from "@angular/core";
/**
* This is a point implementation.
* The ac-rectangle-desc element must be a child of ac-layer element.
* The properties of props are the same as the properties RectangleGraphics and the general properties
* of Entity
* + https://cesiumjs.org/Cesium/Build/Documentation/Entity.html
* + https://cesiumjs.org/Cesium/Build/Documentation/RectangleGraphics.html
*
* __Usage:__
* ```
* <ac-rectangle-desc props="{
* show : rectangle.show, //optional
* coordinates : rectangle.positions,
* material : rectangle.color //optional
* }">
* </ac-rectangle-desc>
* ```
*/
export declare class AcRectangleDescComponent extends BasicDesc {
constructor(drawerService: RectangleDrawerService, layerService: LayerService, computationCache: ComputationCache, cesiumProperties: CesiumProperties);
static ɵfac: i0.ɵɵFactoryDeclaration<AcRectangleDescComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AcRectangleDescComponent, "ac-rectangle-desc", never, {}, {}, never, never, false, never>;
}