mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-03 10:22:13 +00:00
33 lines
1.2 KiB
Plaintext
33 lines
1.2 KiB
Plaintext
---
|
|
title: 裁剪和拆分
|
|
---
|
|
|
|
<script>
|
|
import { ScissorsIcon } MYLUCIDESVELTEIMPORT;
|
|
import Scissors from '$lib/components/toolbar/tools/scissors/Scissors.svelte';
|
|
import DocsImage from '$lib/components/docs/DocsImage.svelte';
|
|
</script>
|
|
|
|
# <ScissorsIcon size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
|
|
|
## 裁剪
|
|
|
|
使用滑块来确定轨迹中想要保留的部分,
|
|
地图上的开始和结束标记、[统计数据和海拔剖面](../files-and-stats) 会实时更新以反映所选内容。
|
|
或直接在剖面图上拖拽出一个矩形选区。
|
|
最后确认选择并裁剪。
|
|
|
|
<div class="flex flex-row justify-center">
|
|
<Scissors class="text-foreground p-3 border rounded-md shadow-lg" />
|
|
</div>
|
|
|
|
## 拆分
|
|
|
|
若要将轨迹拆分为两部分,请点击轨迹上显示的任意分割标记。
|
|
若要在指定位置进行拆分,请将鼠标悬停在轨迹上,
|
|
光标位置将出现剪刀图标,表明可在该处拆分。
|
|
|
|
支持将轨迹拆分为两个 GPX 文件,或将它们作为不同的 [轨迹或分段](../gpx) 保留在同一个文件中。
|
|
|
|
<DocsImage src="tools/split" alt="鼠标悬停在轨迹上时,光标将变为剪刀式样" />
|