const UIEvents = { // 画线 Line: "line", // 图例 Img: "backgroundImage", // 测量 MeasureLine: "measure", // 文字 Text: "text", //这个是标注,暂时这样 // 放大镜 magnifier: "magnifier", // ----------道路------------ // 单向单车道直路 OneEdgeOneLanRoad: "OneEdgeOneLanRoad", // 单向双车道直路 OneEdgeTwoLanRoad: "OneEdgeTwoLanRoad", // 单向三车道直路 OneEdgeThreeLanRoad: "OneEdgeTwoLanRoad", // 双向单车道直路 TwoEdgeOneLanRoad: "TwoEdgeOneLanRoad", // 双向双车道直路 TwoEdgeTwoLanRoad: "TwoEdgeTwoLanRoad", // 双向三车道直路 TwoEdgeThreeLanRoad: "TwoEdgeThreeLanRoad", // ----------道路结构----------- // 支路 BranchRoad: "BranchRoad", // 窄路 NarrowRoad: "NarrowRoad", // 路肩 ShoulderRoad: "ShoulderRoad", // 斑马线 ZebraCrossing: "ZebraCrossing", // 桥 Bridge: "Bridge", // 隧道 Tunnel: "Tunnel", // 人行道 Sidewalk: "Sidewalk", // 施工路段 ConstructionSection: "ConstructionSection", // 下坡 Downhill: "Downhill", // 上坡 Uphill: "Uphill", // 路边水沟 RoadsideGutter: "RoadsideGutter", // 道路与铁 RoadsAndRails: "RoadsAndRails", // 消火栓井 FireHydrantWell: "FireHydrantWell", // 雨水口 Gullies: "Gullies", // 路面凹坑 RoadPotholes: "RoadPotholes", // 路面凸出 ProtrudingRoad: "ProtrudingRoad", // 路面积水 WaterOnTheRoad: "WaterOnTheRoad", // ----------道路模板----------- // s型弯路 SBend: "SBend", // 丁字路口 TJunction: "TJunction", // 五岔路口 FiveForks: "FiveForks", // 出口匝道 ExitRamp: "ExitRamp", // 十字路口 Crossroads: "Crossroads", // 国道(路肩) NationalHighwayShoulder: "NationalHighwayShoulder", // 室内路段 IndoorSection: "IndoorSection", // 弯道 Bend: "Bend", // 急转弯道 SharpCurve: "SharpCurve", // 六岔路口 SixForkIntersection: "SixForkIntersection", // 宽变窄路段 WideNarrowRoad: "WideNarrowRoad", // 直角弯道 Corner: "Corner", // 进口砸到 ImportSmashedRoad: "ImportSmashedRoad", // 高速收费站 HighSpeedTollBooth: "HighSpeedTollBooth", // 高速港湾 HighSpeedHarbor: "HighSpeedHarbor", // 高速路段 HighwaySection: "HighwaySection", // ------------控制方法---------- // 回退 GoBack: "GoBack", // 前进 GoAhead: "GoAhead", // 清除 Clear: "clear", // 底图开 BasemapOpen: "BasemapOpen", // 底图关 BasemapClose: "BasemapClose", // ------------选中组件时的UI控制----------- // 加控制点 AddControlPoint: "AddControlPoint", // 减控制点 MinusControlPoint: "MinusControlPoint", // 复制 Copy: "copy", // 删除 Delete: "delete", // 单实线 SingleSolidLine: "SingleSolidLine", // 单虚线 SingleDashedLine: "SingleDashedLine", // 双实线 DoubleSolidLine: "DoubleSolidLine", // 双虚线 DoubleDashedLine: "DoubleDashedLine", // 折线 BrokenLine: "BrokenLine", // 点画线 PointDrawLine: "PointDrawLine", // 绿化带 Greenbelt: "Greenbelt", // 加粗 Bold: "Bold", // 变细 Thinning: "Thinning", // 加支路 AddBranchRoad: "AddBranchRoad", // 加窄路 AddNarrowRoad: "AddNarrowRoad", // 加车道 AddLane: "AddLane", // 减车道 DelLane: "DelLane", Road: "road", CurveRoad: "curveRoad", }; // export const Furnitures = { // TV: UIEvents.TV, //电视 // CombinationSofa: UIEvents.CombinationSofa, //组合沙发 // SingleSofa: UIEvents.SingleSofa, //单人沙发 // TeaTable: UIEvents.TeaTable, //茶几 // Carpet: UIEvents.Carpet, //地毯 // Plant: UIEvents.Plant, //植物 // DiningTable: UIEvents.DiningTable, //餐桌 // DoubleBed: UIEvents.DoubleBed, //双人床 // SingleBed: UIEvents.SingleBed, //单人床 // Wardrobe: UIEvents.Wardrobe, //衣柜 // Dresser: UIEvents.Dresser, //梳妆台 // BedsideCupboard: UIEvents.BedsideCupboard, //床头柜 // Pillow: UIEvents.Pillow, //抱枕 // GasStove: UIEvents.GasStove, //燃气灶 // Cupboard: UIEvents.Cupboard, //橱柜 // Bathtub: UIEvents.Bathtub, //浴缸 // Closestool: UIEvents.Closestool, //马桶 // Washstand: UIEvents.Washstand, //洗漱台 // Desk: UIEvents.Desk, //书桌 // BalconyChair: UIEvents.BalconyChair, //阳台椅 // Elevator: UIEvents.Elevator, //电梯 // }; export default UIEvents;