mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-02 00:32:33 +00:00

* New translations gpx.mdx (Italian) * New translations funding.mdx (Italian) * New translations clean.mdx (Italian) * New translations files-and-stats.mdx (Hungarian) * New translations funding.mdx (Hungarian) * New translations funding.mdx (Hungarian) * New translations mapbox.mdx (Hungarian) * New translations translation.mdx (Hungarian) * New translations settings.mdx (Hungarian) * New translations clean.mdx (Italian) * New translations extract.mdx (Italian) * New translations toolbar.mdx (German) * New translations file.mdx (German) * New translations funding.mdx (German) * New translations mapbox.mdx (German) * New translations translation.mdx (German) * New translations edit.mdx (German) * New translations file.mdx (German) * New translations settings.mdx (German) * New translations routing.mdx (German) * New translations time.mdx (German) * New translations edit.mdx (German) * New translations settings.mdx (German) * New translations view.mdx (German) * New translations clean.mdx (German) * New translations extract.mdx (German) * New translations extract.mdx (Italian) * New translations merge.mdx (Italian) * New translations minify.mdx (Italian) * New translations routing.mdx (Italian) * 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 integration.mdx (Romanian) * New translations integration.mdx (French) * New translations integration.mdx (Spanish) * New translations integration.mdx (Catalan) * New translations integration.mdx (Czech) * New translations integration.mdx (German) * New translations integration.mdx (Greek) * New translations integration.mdx (Hungarian) * New translations integration.mdx (Italian) * New translations integration.mdx (Lithuanian) * New translations integration.mdx (Dutch) * New translations integration.mdx (Norwegian) * New translations integration.mdx (Polish) * New translations integration.mdx (Portuguese) * New translations integration.mdx (Russian) * New translations integration.mdx (Swedish) * New translations integration.mdx (Chinese Simplified) * New translations integration.mdx (Vietnamese) * New translations integration.mdx (Portuguese, Brazilian) * Update source file en.json * Update source file integration.mdx * 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 (Dutch) * New translations en.json (Polish) * New translations en.json (Russian) * New translations en.json (Swedish) * New translations en.json (Chinese Simplified) * New translations integration.mdx (French)
86 lines
4.0 KiB
Plaintext
86 lines
4.0 KiB
Plaintext
---
|
|
title: Pianificazione e modifica del percorso
|
|
---
|
|
|
|
<script>
|
|
import { Pencil, Route, Bike, TriangleAlert, ArrowRightLeft, Home, Repeat, Trash2, CirclePlay, SquareArrowUpLeft } from 'lucide-svelte';
|
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
|
import Routing from '$lib/components/toolbar/tools/routing/Routing.svelte';
|
|
import routingScreenshot from '$lib/assets/img/docs/tools/routing.png?enhanced';
|
|
import DocsImage from '$lib/components/docs/DocsImage.svelte';
|
|
</script>
|
|
|
|
# <Pencil size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
|
|
|
The route planning and editing tool allows you to create and edit routes by placing or moving anchor points on the map.
|
|
|
|
## Settings
|
|
|
|
As shown below, the tool dialog contains a few settings to control the routing behavior.
|
|
You can minimize the dialog to save space by clicking on <button><SquareArrowUpLeft size="16" class="inline-block" style="margin-bottom: 2px" /></button>.
|
|
|
|
<div class="flex flex-row justify-center">
|
|
<Routing minimizable={false} class="text-foreground p-3 border rounded-md shadow-lg" />
|
|
</div>
|
|
|
|
### <Route size="16" class="inline-block" style="margin-bottom: 2px" /> Routing
|
|
|
|
When routing is enabled, anchor points placed or moved on the map will be connected by a route calculated on the <a href="https://www.openstreetmap.org" target="_blank">OpenStreetMap</a> road network.
|
|
Disable routing to connect anchor points with straight lines.
|
|
This setting can also be toggled by pressing <kbd>F5</kbd>.
|
|
|
|
### <Bike size="16" class="inline-block" style="margin-bottom: 2px" /> Activity
|
|
|
|
Select the activity type to tailor the routes for.
|
|
|
|
### <TriangleAlert size="16" class="inline-block" style="margin-bottom: 2px" /> Allow private roads
|
|
|
|
When enabled, the routing engine will consider private roads when computing routes.
|
|
|
|
<DocsNote type="warning">
|
|
|
|
Only use this option if you have local knowledge of the area and have permission to use the roads in question.
|
|
|
|
</DocsNote>
|
|
|
|
## Plotting and editing routes
|
|
|
|
Creare un percorso o estendere un percorso esistente è semplice come fare clic sulla mappa per posizionare un nuovo punto di ancoraggio.
|
|
|
|
È inoltre possibile trascinare un punto di ancoraggio esistente per reindirizzare il segmento collegandolo con il punto di ancoraggio precedente e successivo.
|
|
|
|
Furthermore, new anchor points can be inserted between existing ones by hovering over the segment connecting them and dragging the anchor point that appears to the desired location.
|
|
Sui dispositivi touch, è possibile toccare il segmento per inserire un nuovo punto di ancoraggio.
|
|
|
|
<DocsNote>
|
|
|
|
When editing imported GPX files, an initial set of anchor points is created automatically.
|
|
To ease the editing process, the more the map is zoomed in, the more anchor points are displayed.
|
|
This allows the route to be edited at different levels of detail.
|
|
|
|
</DocsNote>
|
|
|
|
Finally, you can delete anchor points by clicking on them and selecting <button><Trash2 size="16" class="inline-block" style="margin-bottom: 4px" /> Delete</button> from the context menu.
|
|
|
|
<DocsImage src={routingScreenshot} alt="Anchor points allow you to easily edit a route." />
|
|
|
|
## Additional tools
|
|
|
|
I seguenti strumenti automatizzano alcune operazioni comuni di modifica del percorso.
|
|
|
|
### <ArrowRightLeft size="16" class="inline-block" style="margin-bottom: 2px" /> Reverse
|
|
|
|
Reverse the direction of the route.
|
|
|
|
### <Home size="16" class="inline-block" style="margin-bottom: 2px" /> Back to start
|
|
|
|
Connect the last point of the route with the starting point, using the chosen routing settings.
|
|
|
|
### <Repeat size="16" class="inline-block" style="margin-bottom: 2px" /> Round trip
|
|
|
|
Return to the starting point by the same route.
|
|
|
|
### <CirclePlay size="16" class="inline-block" style="margin-bottom: 2px" /> Change the start of the loop
|
|
|
|
Quando il punto finale del percorso è abbastanza vicino all'inizio, è possibile modificare l'inizio del ciclo facendo clic su qualsiasi punto di ancoraggio e selezionando <button><CirclePlay size="16" class="inline-block" style="margin-bottom: 2px" /> Parti da qui con il loop</button> dal menu contestuale.
|