mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-03-31 00:40:41 +00:00
21 lines
736 B
Plaintext
21 lines
736 B
Plaintext
---
|
||
title: 合并要素
|
||
---
|
||
|
||
<script>
|
||
import { Group } from '@lucide/svelte';
|
||
import Merge from '$lib/components/toolbar/tools/Merge.svelte';
|
||
</script>
|
||
|
||
# <Group size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||
|
||
[选择](../files-and-stats) 多个文件、[轨迹或分段](../gpx) 以使用该工具:
|
||
|
||
- 若要生成一条连续轨迹,请选择 **合并为一条连续轨迹**;
|
||
- 第二个选项可用于创建或管理包含多个 [轨迹或路段](../gpx) 的文件。
|
||
并将所有内容存储在一个文件(或轨迹)中,请选择 **合并但保持轨迹独立**;
|
||
|
||
<div class="flex flex-row justify-center">
|
||
<Merge class="text-foreground p-3 border rounded-md shadow-lg" />
|
||
</div>
|