* New translations en.json (Russian) * New translations en.json (Dutch) * New translations en.json (Dutch) * New translations files-and-stats.mdx (Dutch) * New translations getting-started.mdx (Dutch) * New translations gpx.mdx (Dutch) * New translations funding.mdx (Dutch) * New translations translation.mdx (Dutch) * New translations integration.mdx (Dutch) * New translations map-controls.mdx (Dutch) * New translations edit.mdx (Dutch) * New translations file.mdx (Dutch) * New translations settings.mdx (Dutch) * New translations view.mdx (Dutch) * New translations extract.mdx (Dutch) * New translations merge.mdx (Dutch) * New translations minify.mdx (Dutch) * New translations scissors.mdx (Dutch) * New translations time.mdx (Dutch) * New translations en.json (Turkish) * New translations en.json (Turkish) * New translations integration.mdx (Italian) * New translations toolbar.mdx (Italian) * New translations integration.mdx (Italian) * New translations en.json (German) * New translations files-and-stats.mdx (German) * New translations view.mdx (German) * New translations files-and-stats.mdx (German)
33 lines
1017 B
Plaintext
33 lines
1017 B
Plaintext
---
|
|
title: Barra degli strumenti
|
|
---
|
|
|
|
<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 }
|
|
|
|
La barra degli strumenti si trova sul lato sinistro della mappa ed è il cuore dell'applicazione, dato che consente di accedere alle funzionalità principali di **gpx.studio**.
|
|
Ogni strumento è rappresentato da un'icona e può essere attivato cliccandoci sopra.
|
|
|
|
<div class="flex flex-row justify-center text-foreground">
|
|
<div>
|
|
<Toolbar class="border rounded-md shadow-lg" />
|
|
</div>
|
|
</div>
|
|
|
|
Come per le [azioni di modifica](./menu/edit), la maggior parte degli strumenti può essere applicata a più file contemporaneamente e a [tracce e segmenti interni](./gpx).
|
|
|
|
Le sezioni successive descrivono ogni strumento in dettaglio.
|