
* New translations translation.mdx (Chinese Simplified) * New translations settings.mdx (Chinese Simplified) * New translations settings.mdx (Chinese Simplified) * New translations en.json (Czech) * New translations en.json (Czech) * New translations minify.mdx (Czech) * New translations poi.mdx (Czech) * New translations routing.mdx (Czech) * New translations map-controls.mdx (French) * New translations edit.mdx (Dutch) * New translations settings.mdx (Dutch) * New translations routing.mdx (Dutch)
26 lines
1,012 B
Text
26 lines
1,012 B
Text
---
|
|
title: Zjednodušit
|
|
---
|
|
|
|
<script>
|
|
import { Filter } from 'lucide-svelte';
|
|
import Reduce from '$lib/components/toolbar/tools/Reduce.svelte';
|
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
|
</script>
|
|
|
|
# <Filter size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
|
|
|
Tento nástroj lze použít ke snížení počtu GPS bodů v trase, což může být užitečné pro zmenšení její velikosti.
|
|
|
|
Pomocí posuvníku můžete upravit toleranci algoritmu zjednodušení, a poté zkontrolovat počet bodů, které byly zachovány, a zjednodušenou trasu na mapě.
|
|
|
|
<div class="flex flex-row justify-center">
|
|
<Reduce class="text-foreground p-3 border rounded-md shadow-lg" />
|
|
</div>
|
|
|
|
<DocsNote>
|
|
|
|
Hodnota tolerance představuje maximální vzdálenost mezi původní a zjednodušenou trasou.
|
|
Více o použitém algoritmu si můžete přečíst <a href="https://en.wikipedia.org/wiki/Ramer%E2%80%93Douglas%E2%80%93Peucker_algorithm" target="_blank">zde</a>.
|
|
|
|
</DocsNote>
|