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

33 lines
951 B
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: Araç çubuğu
---
<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 }
Araç çubuğu haritanın solunda yer alır ve uygulamanın kalbidir, **gpx.studio** temel fonksiyonlarına erişmenizi sağlar.
Her araç bir simge ile gösterilir ve üzerine tıklayarak aktive edilir.
<div class="flex flex-row justify-center text-foreground">
<div>
<Toolbar class="border rounded-md shadow-lg" />
</div>
</div>
[Düzenleme işlemliriyle](./menu/edit) olduğu gibi çoğu araç aynı anda birden fazla dosyaya ve [dahili izlere ve segmentlere](./gpx) uygulanabilir.
Sonraki bölümler her aracı detaylı bir şekilde açıklar.