@greenmice/ngx-cesium
Version:
Angular library for working with Cesium.
29 lines (28 loc) • 1.46 kB
TypeScript
import { OnInit } from '@angular/core';
import { BasicDesc } from '../../services/basic-desc/basic-desc.service';
import { PolygonDrawerService } from '../../services/drawers/polygon-drawer/polygon-drawer.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 * as i0 from "@angular/core";
/**
* This is a polygon implementation.
* The properties of props are the same as the properties of Entity and PolygonGraphics:
* + https://cesiumjs.org/Cesium/Build/Documentation/Entity.html
* + https://cesiumjs.org/Cesium/Build/Documentation/PolygonGraphics.html
*
* __Usage:__
* ```
* <ac-polygon-desc props="{
* hierarchy: polygon.hierarchy,
* material: polygon.material,
* height: polygon.height
* }">
* </ac-polygon-desc>
* ```
*/
export declare class AcPolygonDescComponent extends BasicDesc implements OnInit {
constructor(polygonDrawer: PolygonDrawerService, layerService: LayerService, computationCache: ComputationCache, cesiumProperties: CesiumProperties);
static ɵfac: i0.ɵɵFactoryDeclaration<AcPolygonDescComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<AcPolygonDescComponent, "ac-polygon-desc", never, {}, {}, never, never, false, never>;
}