From 57d0810dd14311dd2aa3a0926b5800012d1112b5 Mon Sep 17 00:00:00 2001 From: XU Cong Date: Wed, 2 Oct 2024 13:40:28 +0900 Subject: [PATCH 1/2] Update presetLayerStyles.ts --- .../LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/beta/features/Editor/Map/LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts b/web/src/beta/features/Editor/Map/LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts index c5b6e28b81..d13c112c21 100644 --- a/web/src/beta/features/Editor/Map/LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts +++ b/web/src/beta/features/Editor/Map/LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts @@ -23,7 +23,7 @@ export const defaultStyle = { export const professionalStyle = { marker: { heightReference: "clamp", - hideIndicator: false, + hideIndicator: true, pointColor: "#E9373D", pointOutlineColor: "white", pointOutlineWidth: 1, @@ -39,14 +39,14 @@ export const professionalStyle = { expression: "color('#E9373D',0.6)" }, heightReference: "clamp", - hideIndicator: false, + hideIndicator: true, selectedFeatureColor: { expression: "color('#F1AF02',0.6)" } }, polyline: { clampToGround: true, - hideIndicator: false, + hideIndicator: true, selectedFeatureColor: "#F1AF02", strokeColor: "#E9373D", strokeWidth: 2 From bcd8d7c028c4c34c0b93a64def32bbe1097e411d Mon Sep 17 00:00:00 2001 From: XU Cong Date: Wed, 2 Oct 2024 13:55:49 +0900 Subject: [PATCH 2/2] update hide indicator settings --- .../LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web/src/beta/features/Editor/Map/LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts b/web/src/beta/features/Editor/Map/LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts index d13c112c21..e9a0ea00bf 100644 --- a/web/src/beta/features/Editor/Map/LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts +++ b/web/src/beta/features/Editor/Map/LayerStylePanel/PresetLayerStyle/presetLayerStyles.ts @@ -83,7 +83,7 @@ export const pointWithLabelStyle = { export const polylineStyle = { polyline: { clampToGround: true, - hideIndicator: false, + hideIndicator: true, selectedFeatureColor: "#F1AF02", strokeColor: "#E9373D", strokeWidth: 2 @@ -94,7 +94,7 @@ export const polygonStyle = { polygon: { fillColor: "#E9373D", heightReference: "clamp", - hideIndicator: false, + hideIndicator: true, selectedFeatureColor: "#F1AF02" } }; @@ -106,7 +106,7 @@ export const extrudedPolygonStyle = { }, fillColor: "#E9373D", heightReference: "clamp", - hideIndicator: false, + hideIndicator: true, selectedFeatureColor: "#F1AF02" } };