mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-03 18:32:12 +00:00
* New translations en.json (Italian) * New translations edit.mdx (Italian) * New translations en.json (Spanish) * New translations en.json (Italian) * New translations files-and-stats.mdx (Italian) * New translations getting-started.mdx (Italian) * New translations integration.mdx (Italian) * New translations map-controls.mdx (Italian) * New translations edit.mdx (Spanish) * New translations file.mdx (Italian) * New translations settings.mdx (Italian) * New translations view.mdx (Italian) * New translations toolbar.mdx (Italian) * New translations minify.mdx (Italian) * New translations poi.mdx (Italian) * New translations routing.mdx (Italian) * New translations scissors.mdx (Italian) * New translations edit.mdx (Italian) * New translations en.json (Romanian) * New translations en.json (Dutch) * New translations edit.mdx (Dutch)
33 lines
996 B
Plaintext
33 lines
996 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 }
|
|
|
|
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**.
|
|
Ogni strumento è rappresentato da un'icona e può essere attivato facendo clic su di esso.
|
|
|
|
<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.
|