12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*
- * ********************************************************************************************************************
- *
- * :*$@@%$*: ;: ;; ;;
- * :@@%! :!@@%: %! ;%%@@%$ =@@@@@@@%; @%@@@%%%%@@@@@
- * :@%; :$= %%$$$%$$ ;$$ ;$@= !@$
- * =@! %! @ $=;% !@@@%: !$$$$$$$$$$$$$$=
- * =@* %! @ $= % %@= =%@! %=
- * *$%%! @@= ;=$%%%$*: %! @ $= % =%%%%%%@$ *%: =%
- * %@@!: !@@@%=$@@@@%! :*@@$: %! @ $= % $* ;@ @* :%*
- * ;@@! ;!!!;: ;@%: =======@%========* @ $$ % $%*****$@ :@$=*********=@$
- * $@* ;@@@%=!: *@*
- * =@$ ;;;!=%@@@@=! =@!
- * %@$: =@%: :*@@@* %@= Copyright (c) 2016-2019. 北京上格云技术有限公司
- * ;%@@$=$@@%* *@@@$=%@@%;
- * ::;:: ::;:: All rights reserved.
- *
- * ********************************************************************************************************************
- */
- import { Anchor } from "./Anchor";
- import { SGraphElementType } from "./../enums/SGraphElementType";
- import { Point } from "@saga-web/big/lib/types/Point";
- import { Size } from "@saga-web/big/lib/types/Size";
- /**
- * 图例节点接口
- *
- * @author 张宇
- */
- export interface Legend {
- /** ID */
- ID: string;
- /** 名称 */
- Name: string;
- /** 返回工程信息化对象 ID 列表 */
- AttachObjectIds?: string[];
- /** 图标,区域类型 */
- GraphElementType: SGraphElementType;
- /** 对应的图例ID */
- GraphElementId: string;
- /** 图例数量 */
- Num?: number;
- /** 位置 */
- Pos: Point;
- /** item类型 */
- Type: string
- /** 缩放 */
- Scale?: Point;
- /** 旋转 */
- Rolate?: Point;
- /** 大小 */
- Size?: Size;
- /** 锚点List */
- AnchorList?: Anchor[];
- /** 轮廓线 */
- OutLine?: Point[];
- /** 由应用自己定义 */
- Properties?: any;
- } // Interface Legend
|