iceye-angular-cesium-fork
Version:
Angular library for working with Cesium.
13 lines (12 loc) • 581 B
TypeScript
import { ChangeDetectorRef, OnInit } from '@angular/core';
import { PlonterService } from '../../services/plonter/plonter.service';
import { CoordinateConverter } from '../../services/coordinate-converter/coordinate-converter.service';
export declare class AcDefaultPlonterComponent implements OnInit {
plonterService: PlonterService;
private cd;
private geoConverter;
constructor(plonterService: PlonterService, cd: ChangeDetectorRef, geoConverter: CoordinateConverter);
ngOnInit(): void;
get plonterPosition(): any;
chooseEntity(entity: any): void;
}