#
vincentlu
2026-03-23 94cb5196f4eecdc6102ef3da74087b1a8a58bc99
zy-acs-flow/src/map/constants.js
@@ -1,13 +1,50 @@
export const ANIMATE_DURING_TIME = 600;
export const MAP_DEFAULT_ROTATION = 0;
export const MAP_DEFAULT_ROTATION = 270;
export const ANIMATE_DURING_TIME = 300;
export let AGV_ANGLE_OFFSET_VAL = 0;
export let MAP_MIRROR = false;
export const setMapPreferences = (preferences = {}) => {
    if (preferences == null || typeof preferences !== 'object') {
        return;
    }
    const { agvAngleOffsetVal, mapMirror } = preferences;
    if (typeof agvAngleOffsetVal === 'number' && !isNaN(agvAngleOffsetVal)) {
        AGV_ANGLE_OFFSET_VAL = agvAngleOffsetVal;
    }
    if (typeof mapMirror === 'boolean') {
        MAP_MIRROR = mapMirror;
    }
};
export const MAP_MODE = Object.freeze({
    OBSERVER_MODE: "1",
    MOVABLE_MODE: "2",
    SETTINGS_MODE: "3",
    AREA_MODE: "4",
})
export const MAP_TONES = Object.freeze({
    light: {
        canvasBackground: '#f1f2f6',
        textPrimary: 0x333333,
        grid: {
            color: 0x000000,
            alpha: 0.08,
        },
    },
    dark: {
        canvasBackground: '#1c222b',
        textPrimary: 0xcfd6e3,
        grid: {
            color: 0x5f6773,
            alpha: 0.22,
        },
    },
});
export const DEVICE_TYPE = Object.freeze({
    SHELF: "SHELF",
@@ -19,6 +56,8 @@
    POINT: "POINT",
    ROUTE: "ROUTE",
    AREA: "AREA",
})
export const DEVICE_Z_INDEX = Object.freeze({
@@ -31,6 +70,8 @@
    POINT: 2,
    DYNAMIC_ROUTE: 2,
    AREA: 5,
})
export const DEVICE_SPRITE_TINT = Object.freeze({
@@ -50,7 +91,7 @@
    DIRECTION: null,
    AGV: 0xb2bec3,
    POINT: 0xdfe6e9,
    POINT: 0x555a68,
})
export const DEVICE_SELECTED_EFFECT_PADDING = Object.freeze({
@@ -71,6 +112,8 @@
    AGV: 0x74b9ff,
    POINT: 0xC9E6DA,
    AREA: 0x2c7ac3,
})
export const AGV_STATUS_MODE = Object.freeze({
@@ -86,4 +129,9 @@
    OUT_OF_ORDER: 0,
    ORDER: 1,
    REVERSE_ORDER: 2,
})
})
export const ROUTE_COLORS = Object.freeze({
    light: 0x2f68ac,
    dark: 0x4a84c8,
});