|
@@ -87,6 +87,7 @@ export enum CustomCom {
|
|
|
boxWidth = "boxWidth",
|
|
|
autoMarginLeft = "autoMarginLeft",
|
|
|
fullCtrl = "fullCtrl",
|
|
|
+ trackMeasureMode = "trackMeasureMode"
|
|
|
}
|
|
|
|
|
|
export enum RightMenuEum {
|
|
@@ -127,6 +128,7 @@ export const boxWidthStack = stackFactory(
|
|
|
);
|
|
|
export const autoSysViewLeftStack = stackFactory(ref<string>("70px"));
|
|
|
export const controlFullStack = stackFactory(ref<boolean>(false));
|
|
|
+export const trackMeasureModeStack = stackFactory(ref<boolean>(false));
|
|
|
export const activeFixPointStack = stackFactory(ref<FixPoint>());
|
|
|
export const activeBasePointStack = stackFactory(ref<BasePoint>());
|
|
|
|
|
@@ -144,6 +146,7 @@ export const customMapStack = {
|
|
|
[CustomCom.boxWidth]: boxWidthStack,
|
|
|
[CustomCom.autoMarginLeft]: autoSysViewLeftStack,
|
|
|
[CustomCom.fullCtrl]: controlFullStack,
|
|
|
+ [CustomCom.trackMeasureMode]: trackMeasureModeStack
|
|
|
};
|
|
|
export type CustomMapStack = typeof customMapStack;
|
|
|
|