
* New translations en.json (Chinese Simplified) * New translations toolbar.mdx (German) * New translations funding.mdx (Spanish) * New translations merge.mdx (German) * New translations en.json (Romanian) * New translations en.json (French) * New translations en.json (Spanish) * New translations en.json (Catalan) * New translations en.json (Czech) * New translations en.json (German) * New translations en.json (Greek) * New translations en.json (Hungarian) * New translations en.json (Italian) * New translations en.json (Lithuanian) * New translations en.json (Dutch) * New translations en.json (Norwegian) * New translations en.json (Polish) * New translations en.json (Portuguese) * New translations en.json (Russian) * New translations en.json (Swedish) * New translations en.json (Chinese Simplified) * New translations en.json (Vietnamese) * New translations en.json (Portuguese, Brazilian) * New translations en.json (Korean) * New translations en.json (Hebrew)
32 lines
962 B
Text
32 lines
962 B
Text
---
|
|
title: Toolbar
|
|
---
|
|
|
|
<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>
|
|
|
|
# { title }
|
|
|
|
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**.
|
|
Jedes Werkzeug wird durch ein Symbol dargestellt und kann durch einen Klick aktiviert werden.
|
|
|
|
<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).
|
|
|
|
In den folgenden Abschnitten werden die einzelnen Tools detailliert beschrieben.
|