Skip to content

CSV レイヤにデフォルトでチェックを付けることはできますか? #60

Answered by sankichi92
momosaic asked this question in 質問
Discussion options

You must be logged in to vote

残念ながら2023年2月現在、設定ファイルだけで CSV レイヤーをデフォルトで表示させることはできないです 🙏

ただ、src/components/OverlayFeatureLayers のコードを編集して LayersControl.Overlay コンポーネントの属性に checked を追加すると、すべての CSV レイヤーをデフォルトで表示させることは可能です。

diff --git a/src/components/OverlayFeatureLayers.tsx b/src/components/OverlayFeatureLayers.tsx
index c538fbb..f8c4ee0 100644
--- a/src/components/OverlayFeatureLayers.tsx
+++ b/src/components/OverlayFeatureLayers.tsx
@@ -48,7 +48,7 @@ export const OverlayFeatureLayers = ({ featureCollections }: Props) => (
       });
 
       return (
-        <LayersControl.Overlay key={name} name={name}>
+        <LayersControl.Overlay key={name} name={name} checked>
           <GeoJSON
             data={featureColle…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@momosaic
Comment options

Answer selected by sankichi92
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
質問
Labels
None yet
2 participants