mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-02 10:02:12 +00:00
33 lines
1.3 KiB
Plaintext
33 lines
1.3 KiB
Plaintext
---
|
||
title: Toolbar
|
||
---
|
||
|
||
<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>
|
||
|
||
З дапамогай [edit actions](./menu/edit), большасць інструментаў можа быць прыменена да некалькіх файлаў адначасова, а таксама для [inner tracks and segments](./gpx).
|
||
|
||
Наступныя секцыі апісваюць кожны інструмент больш дэтальна.
|