Files
gpx.studio/website/src/lib/docs/en/toolbar.mdx

32 lines
913 B
Plaintext
Raw Normal View History

2024-07-08 22:43:50 +02:00
---
title: Toolbar
---
2024-07-10 15:09:52 +02:00
<script lang="ts">
import Toolbar from '$lib/components/toolbar/Toolbar.svelte';
import { currentTool, Tool } from '$lib/stores';
import { onMount, onDestroy } from 'svelte';
onMount(() => {
currentTool.set(Tool.ROUTING);
});
onDestroy(() => {
currentTool.set(null);
});
</script>
2024-07-08 22:43:50 +02:00
# { title }
2024-07-09 22:15:05 +02:00
The toolbar is located on the left side of the map, and is the heart of the application, as it provides access to the main features of **gpx.studio**.
2024-07-10 15:09:52 +02:00
Each tool is represented by an icon, and can be activated by clicking on it.
<div class="flex flex-row justify-center text-foreground">
<div>
<Toolbar class="border rounded-md shadow-lg" />
</div>
</div>
As with [edit actions](./menu/edit), most tools can be applied to multiple files at once, and to [inner tracks and segments](./gpx).
2024-07-09 22:15:05 +02:00
2024-07-10 15:09:52 +02:00
The next sections describe each tool in detail.