123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- 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
- }
|