import def from './default.js' const Road = { ...def.Road, strokeStyle: "rgba(243, 255, 0, 1)", } const CurveRoad = { ...def.CurveRoad, ...Road } const Tag = { ...def.Tag, strokeStyle: "#00C8AF", fillStyle: "#00C8AF", } const Point = { ...def.Point, lineWidth: 2, fillStyle: "rgba(245, 255, 0, 1)", strokeStyle: "rgba(245, 255, 255, 1)", } const CurvePoint = { ...def.CurvePoint, ...Point } const ControlPoint = { ...def.ControlPoint, ...Point, } const Edg = { ...def.Edge, strokeStyle: "rgba(243, 255, 0, 1)", } const CurveEdge = { ...def.CurveEdge, strokeStyle: "rgba(243, 255, 0, 1)", } export default { Road, Tag, Point, CurvePoint, ControlPoint, CurveRoad, Edg, CurveEdge }