gisviewer-vue3-arcgis
Version:
在应用中引入私服的包, 项目根目录下 新建文件 .npmrc 在 .npmrc 中对包源进行配置:
23 lines (22 loc) • 739 B
TypeScript
import { IResult, IShowSignalSystemParams, IShowSubSignalSystemParams } from 'packages/components/src/types';
export default class SignalSystemController {
private view;
private signalSystemLayer;
constructor(view: __esri.MapView | __esri.SceneView);
/**
* 显示信控系统
* @param params
* @returns
*/
showSignalSystems(params: IShowSignalSystemParams): Promise<IResult>;
/**
* 显示信控子系统
* @param params
* @returns
*/
showSubSignalSystems(params: IShowSubSignalSystemParams): Promise<IResult>;
removeSubSignalSystems(subCode?: string): IResult;
removeSignalSystems(areaCode?: string): IResult;
private showSystem;
private showSubSystem;
}