Browse Source

代码顺序

CzRger 2 years ago
parent
commit
cd4da54137
4 changed files with 21 additions and 17 deletions
  1. 2 1
      index.html
  2. 16 0
      src/out/config.js
  3. 2 15
      src/views/init-speed-track/index.vue
  4. 1 1
      src/views/init-speed-track/track-style.ts

+ 2 - 1
index.html

@@ -4,7 +4,8 @@
     <meta charset="UTF-8" />
     <link rel="icon" type="image/svg+xml" href="/vite.svg" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-    <title>Vite + Vue + TS</title>
+    <title>seat-tools</title>
+    <script src="/config.js"></script>
   </head>
   <body>
     <div id="app"></div>

+ 16 - 0
src/out/config.js

@@ -0,0 +1,16 @@
+window.cusConfig = {
+  trackSource: [
+    ['TIANAO_RADAR', {
+      label: '小目标雷达',
+      color: '#f0a461'
+    }],
+    ['BEIDOU', {
+      label: '北斗',
+      color: '#f755f3'
+    }],
+    ['GLOBAL_AIS', {
+      label: '全球AIS',
+      color: '#409eff'
+    }],
+  ]
+}

+ 2 - 15
src/views/init-speed-track/index.vue

@@ -89,20 +89,7 @@ export default defineComponent({
   setup() {
     const store = useStore()
     const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
-    const SourceMap = new Map([
-        ['TIANAO_RADAR', {
-          label: '小目标雷达',
-          color: '#f0a461'
-        }],
-        ['BEIDOU', {
-          label: '北斗',
-          color: '#f755f3'
-        }],
-        ['GLOBAL_AIS', {
-          label: '全球AIS',
-          color: '#409eff'
-        }],
-    ])
+    const SourceMap = new Map(window.cusConfig.trackSource)
     const state = reactive({
       map: <any>null,
       mapFunc: null,
@@ -510,4 +497,4 @@ export default defineComponent({
     }
   }
 }
-</style>
+</style>

+ 1 - 1
src/views/init-speed-track/track-style.ts

@@ -23,6 +23,7 @@ const trackLineStyle = (feature: any, resolution: any, map: any, color: any, pMa
     const radius = 10
     const longRadius = radius * Math.SQRT2;
     const judgeIs = (p1: any[], p2: any[], p3: any[]) => {
+        const E = 0.00000001
         const k1 = (ps: any[], pe: number[]) => {
             return (pe[1] - ps[1]) / (pe[0] - ps[0])
         }
@@ -38,7 +39,6 @@ const trackLineStyle = (feature: any, resolution: any, map: any, color: any, pMa
         const s = (p: any[]) => {
             return p3[0] === p[0] && p3[1] === p[1]
         }
-        const E = 0.00000001
         return s(p1) || s(p2) || a(p2, p3) || d(p2, p3)
     }
     for (let i = 0; i <= 1; i += radio) {