Skip to content

Commit 6b84cf7

Browse files
authored
Zipファイルの部分的変換の対応 (#728)
<!-- Close or Related Issues --> ### What I did(変更内容) <!-- Please describe the motivation behind this PR and the changes it introduces. --> <!-- どのような変更をしますか? 目的は? --> - Zipファイル対応 - Zipファイルを入力として受け取り、内部のCityGMLファイルを列挙する - Zipファイルを入力として受け取り、内部のファイルパスを使って変換する - Zip専用のUIページ(/zip)を追加して、ステップで選択するUIの追加 - マップ上でのメッシュコード範囲選択機能を実装 - UIの表示改善(テキストの改行処理など) ### Notes(連絡事項) <!-- If manual testing is required, please describe the procedure. --> <!-- 手動での動作確認が必要なら手順を簡単に伝えてください。そのほか連絡事項など。 --> None / なし
1 parent 24dea3b commit 6b84cf7

33 files changed

+2664
-123
lines changed

app/package-lock.json

Lines changed: 384 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,9 @@
5353
"@rollup/rollup-darwin-x64": "4.24.0",
5454
"@rollup/rollup-linux-x64-gnu": "^4.24.0",
5555
"@rollup/rollup-win32-x64-msvc": "^4.24.0"
56+
},
57+
"dependencies": {
58+
"maplibre-gl": "^5.6.0",
59+
"svelte-maplibre-gl": "^1.0.0"
5660
}
5761
}

app/src-tauri/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ thiserror = "2.0.12"
2727
tauri-plugin-fs = "2.4.1"
2828
tauri-plugin-shell = "2.3.0"
2929
tauri-plugin-dialog = "2.3.1"
30+
zip = "4.0.0"
31+
tokio = { version = "1.47.1", features = ["macros"] }
3032

3133
[features]
3234
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.

0 commit comments

Comments
 (0)