Files
gpx.studio/website/src/lib/docs/ru/toolbar.mdx
2025-11-10 18:48:19 +01:00

33 lines
1.4 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: Панель инструментов
---
<script lang="ts">
import Toolbar from '$lib/components/toolbar/Toolbar.svelte';
import { currentTool, Tool } from '$lib/components/toolbar/tools';
import { onMount, onDestroy } from 'svelte';
onMount(() => {
currentTool.set(Tool.ROUTING);
});
onDestroy(() => {
currentTool.set(null);
});
</script>
# { title }
Панель инструментов расположена слева от карты и является ключевым элементом приложения, так как обеспечивает доступ к основным функциям **gpx.studio**.
Каждый инструмент отображается в виде значка и активируется простым нажатием на него.
<div class="flex flex-row justify-center text-foreground">
<div>
<Toolbar class="border rounded-md shadow-lg" />
</div>
</div>
Как и в случае с [редактированием действий](./menu/edit), большинство инструментов можно применять сразу к нескольким файлам, а также к [внутренним трекам и сегментам](./gpx).
В следующих разделах подробно описан каждый инструмент.