Przeglądaj źródła

互联网-社管一张图-企业一张图,周边设备查询范围半径填充色与ui图不一致

CzRger 1 rok temu
rodzic
commit
fb6fc933c2

+ 1 - 1
src/components/easyMap/func/base-draw.ts

@@ -33,7 +33,7 @@ const baseDrawConfig = {
     lineWidth: 1, // LineString的线段宽度,默认1
     lineType: 0, // LineString的线段类型索引,默认0,实线,取globalLineDash数组索引
     lineDash: null, // LineString的线段类型,默认null,优先级比lineType高
-    polyColor: 'rgba(20, 129, 241, 0.3)', // Polygon的填充色,默认蓝色
+    polyColor: 'rgba(20, 129, 241, 0.1)', // Polygon的填充色,默认蓝色
     polyBorderColor: '#2860F1', // Polygon的边框颜色,默认蓝色
     polyBorderWidth: 1, // Polygon的边框宽度,默认1
     polyBorderType: 0, // Polygon的边框类型索引,默认0,实线,取globalLineDash数组索引

+ 1 - 1
src/views/gis/layout/index.vue

@@ -525,7 +525,7 @@ export default defineComponent({
                 lineDash: [10, 10]
               }),
               fill: new style.Fill({
-                color: 'rgba(20, 129, 241, 0.3)',
+                color: 'rgba(20, 129, 241, 0.1)',
               }),
             })
           ]

+ 2 - 2
src/views/gis/layout/tools/analysis.vue

@@ -222,7 +222,7 @@ export default defineComponent({
                 lineDash: [10, 10]
               }),
               fill: new style.Fill({
-                color: 'rgba(20, 129, 241, 0.3)',
+                color: 'rgba(20, 129, 241, 0.1)',
               }),
             })
           ]
@@ -271,7 +271,7 @@ export default defineComponent({
               lineDash: [10, 10]
             }),
             fill: new style.Fill({
-              color: 'rgba(20, 129, 241, 0.3)',
+              color: 'rgba(20, 129, 241, 0.1)',
             }),
           })
         });

+ 1 - 1
src/views/gis/layout/tools/tool-draw.ts

@@ -31,7 +31,7 @@ const baseDrawConfig = {
     lineWidth: 2, // LineString的线段宽度,默认1
     lineType: 0, // LineString的线段类型索引,默认0,实线,取globalLineDash数组索引
     lineDash: null, // LineString的线段类型,默认null,优先级比lineType高
-    polyColor: 'rgba(20, 129, 241, 0.3)', // Polygon的填充色,默认蓝色
+    polyColor: 'rgba(20, 129, 241, 0.1)', // Polygon的填充色,默认蓝色
     polyBorderColor: '#2860F1', // Polygon的边框颜色,默认蓝色
     polyBorderWidth: 2, // Polygon的边框宽度,默认1
     polyBorderType: 0, // Polygon的边框类型索引,默认0,实线,取globalLineDash数组索引