mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-05 01:42:54 +00:00

* New translations map-controls.mdx (Italian) * New translations settings.mdx (Italian) * New translations en.json (French) * New translations en.json (Latvian) * New translations files-and-stats.mdx (Latvian) * New translations getting-started.mdx (Latvian) * New translations gpx.mdx (Latvian) * New translations funding.mdx (Latvian) * New translations mapbox.mdx (Latvian) * New translations translation.mdx (Latvian) * New translations integration.mdx (Latvian) * New translations map-controls.mdx (Latvian) * New translations menu.mdx (Latvian) * New translations edit.mdx (Latvian) * New translations file.mdx (Latvian) * New translations settings.mdx (Latvian) * New translations view.mdx (Latvian) * New translations toolbar.mdx (Latvian) * New translations clean.mdx (Latvian) * New translations extract.mdx (Latvian) * New translations merge.mdx (Latvian) * New translations minify.mdx (Latvian) * New translations poi.mdx (Latvian) * New translations routing.mdx (Latvian) * New translations scissors.mdx (Latvian) * New translations time.mdx (Latvian) * New translations faq.mdx (Latvian) * New translations elevation.mdx (Latvian) * New translations en.json (Latvian) * New translations funding.mdx (Latvian) * New translations translation.mdx (Latvian) * New translations time.mdx (Latvian) * New translations en.json (French)
33 lines
911 B
Plaintext
33 lines
911 B
Plaintext
---
|
|
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**.
|
|
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).
|
|
|
|
The next sections describe each tool in detail.
|