mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-04-28 06:15:54 +00:00
Compare commits
17 Commits
9ff91480db
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
17559913fd | ||
|
|
55590d68a6 | ||
|
|
8e9f16c460 | ||
|
|
c60b64f24f | ||
|
|
fdb6fe4e52 | ||
|
|
0bf168e67e | ||
|
|
d762a45eb9 | ||
|
|
548ab9a459 | ||
|
|
315c1f6a61 | ||
|
|
98257bee12 | ||
|
|
5561b7d9fe | ||
|
|
320887206c | ||
|
|
04a1bf6a55 | ||
|
|
0989371874 | ||
|
|
3dcd6e52d3 | ||
|
|
0f06d0d461 | ||
|
|
db33310a10 |
@@ -43,8 +43,6 @@
|
|||||||
BookOpenText,
|
BookOpenText,
|
||||||
ChartArea,
|
ChartArea,
|
||||||
Maximize,
|
Maximize,
|
||||||
Maximize2,
|
|
||||||
Minimize2,
|
|
||||||
} from '@lucide/svelte';
|
} from '@lucide/svelte';
|
||||||
import { map } from '$lib/components/map/map';
|
import { map } from '$lib/components/map/map';
|
||||||
import { editMetadata } from '$lib/components/file-list/metadata/utils.svelte';
|
import { editMetadata } from '$lib/components/file-list/metadata/utils.svelte';
|
||||||
@@ -72,7 +70,7 @@
|
|||||||
import { copied, selection } from '$lib/logic/selection';
|
import { copied, selection } from '$lib/logic/selection';
|
||||||
import { allHidden } from '$lib/logic/hidden';
|
import { allHidden } from '$lib/logic/hidden';
|
||||||
import { boundsManager } from '$lib/logic/bounds';
|
import { boundsManager } from '$lib/logic/bounds';
|
||||||
import { tick, onMount } from 'svelte';
|
import { tick } from 'svelte';
|
||||||
import { allowedPastes } from '$lib/components/file-list/sortable-file-list';
|
import { allowedPastes } from '$lib/components/file-list/sortable-file-list';
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@@ -107,23 +105,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
let layerSettingsOpen = $state(false);
|
let layerSettingsOpen = $state(false);
|
||||||
let fullscreen = $state(false);
|
|
||||||
|
|
||||||
function toggleFullscreen() {
|
|
||||||
if (!document.fullscreenElement) {
|
|
||||||
document.documentElement.requestFullscreen?.();
|
|
||||||
} else {
|
|
||||||
document.exitFullscreen?.();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
onMount(() => {
|
|
||||||
const handler = () => {
|
|
||||||
fullscreen = document.fullscreenElement !== null;
|
|
||||||
};
|
|
||||||
document.addEventListener('fullscreenchange', handler);
|
|
||||||
return () => document.removeEventListener('fullscreenchange', handler);
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="absolute md:top-2 left-0 right-0 z-20 flex flex-row justify-center pointer-events-none">
|
<div class="absolute md:top-2 left-0 right-0 z-20 flex flex-row justify-center pointer-events-none">
|
||||||
@@ -396,16 +377,6 @@
|
|||||||
{i18n._('menu.toggle_3d')}
|
{i18n._('menu.toggle_3d')}
|
||||||
<Shortcut key={i18n._('menu.right_click_drag')} />
|
<Shortcut key={i18n._('menu.right_click_drag')} />
|
||||||
</Menubar.Item>
|
</Menubar.Item>
|
||||||
<Menubar.Separator />
|
|
||||||
<Menubar.CheckboxItem checked={fullscreen} onCheckedChange={toggleFullscreen}>
|
|
||||||
{#if fullscreen}
|
|
||||||
<Minimize2 size="16" />
|
|
||||||
{:else}
|
|
||||||
<Maximize2 size="16" />
|
|
||||||
{/if}
|
|
||||||
{i18n._('menu.fullscreen')}
|
|
||||||
<Shortcut key="F11" />
|
|
||||||
</Menubar.CheckboxItem>
|
|
||||||
</Menubar.Content>
|
</Menubar.Content>
|
||||||
</Menubar.Menu>
|
</Menubar.Menu>
|
||||||
<Menubar.Menu>
|
<Menubar.Menu>
|
||||||
|
|||||||
@@ -820,7 +820,7 @@ export class RoutingControls {
|
|||||||
`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
|
`<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
|
||||||
<circle cx="10" cy="10" r="8" fill="white" stroke="black" stroke-width="2" />
|
<circle cx="10" cy="10" r="8" fill="white" stroke="black" stroke-width="2" />
|
||||||
</svg>`,
|
</svg>`,
|
||||||
_map.getCanvasContainer().offsetWidth > 1000 ? 56 : 80
|
_map.getCanvasContainer().offsetWidth > 1000 ? 50 : 80
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
Каб кіраваць арыентацыяй і нахілам карты, вы таксама можаце перацягнуць карту, утрымліваючы <kbd>Ctrl</kbd>.
|
Каб кіраваць арыентацыяй і нахілам карты, вы таксама можаце перацягнуць карту, утрымліваючы <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Opcions de vista
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Entra o surt de la vista de mapa en 3D.
|
|||||||
Per controlar l'orientació i inclinació del mapa, pots arrossegar el mapa mentre prems <kbd>Ctrl</kbd>.
|
Per controlar l'orientació i inclinació del mapa, pots arrossegar el mapa mentre prems <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Možnosti zobrazení
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Zapnout nebo vypnout 3D zobrazení mapy.
|
|||||||
Chcete-li ovládat orientaci a náklon mapy, můžete ji také potáhnout s přidržením klávesy <kbd>Ctrl</kbd>.
|
Chcete-li ovládat orientaci a náklon mapy, můžete ji také potáhnout s přidržením klávesy <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Anzeigeoptionen
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Aufrufen oder Beenden der 3D-Kartenansicht.
|
|||||||
Um die Ausrichtung und Neigung der Karte zu steuern, können Sie die Karte auch ziehen, während Sie <kbd>die Strg-Taste</kbd> gedrückt halten.
|
Um die Ausrichtung und Neigung der Karte zu steuern, können Sie die Karte auch ziehen, während Sie <kbd>die Strg-Taste</kbd> gedrückt halten.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
@@ -3,7 +3,7 @@ title: Opciones de vista
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Entra o sale de la vista 3D del mapa.
|
|||||||
Para controlar la orientación e inclinación del mapa, puede arrastrarlo mientras mantiene pulsada la tecla <kbd>Ctrl</kbd>.
|
Para controlar la orientación e inclinación del mapa, puede arrastrarlo mientras mantiene pulsada la tecla <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Pantalla completa
|
|
||||||
|
|
||||||
Entrar o salir del modo de pantalla completa.
|
|
||||||
También puede presionar <kbd>F11</kbd> para alternar, o <kbd>Escape</kbd> para salir.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Ikusteko aukerak
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Aktibatu edo desaktibatu maparen 3D ikuspegia.
|
|||||||
Maparen orientazioa eta okertzea kontrolatzeko, mapa ere arrasta dezakezu <kbd> Ctrl</kbd> sakatzen duzun bitartean.
|
Maparen orientazioa eta okertzea kontrolatzeko, mapa ere arrasta dezakezu <kbd> Ctrl</kbd> sakatzen duzun bitartean.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Options d'affichage
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Entrer ou sortir de la vue 3D de la carte.
|
|||||||
Pour contrôler l'orientation et l'inclinaison de la carte, vous pouvez également faire glisser la carte tout en maintenant <kbd>Ctrl</kbd>.
|
Pour contrôler l'orientation et l'inclinaison de la carte, vous pouvez également faire glisser la carte tout en maintenant <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Plein écran
|
|
||||||
|
|
||||||
Passer en mode plein écran, ou le quitter.
|
|
||||||
Vous pouvez également appuyer sur <kbd>F11</kbd> pour activer/désactiver le mode plein écran, ou sur <kbd>Échap</kbd> pour quitter.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Nézet beállításai
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Lépjen be vagy lépjen ki a 3D térképnézetből.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Opzioni di visualizzazione
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Entrare o uscire dalla vista mappa 3D.
|
|||||||
Per controllare l'orientamento e l'inclinazione della mappa, puoi anche trascinare la mappa tenendo premuto <kbd>Ctrl</kbd>.
|
Per controllare l'orientamento e l'inclinazione della mappa, puoi anche trascinare la mappa tenendo premuto <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Bekijk opties
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Voer in of verlaat de 3D-mapweergave.
|
|||||||
Om de oriëntatie en kanteling van de kaart te bepalen, kun je ook de kaart slepen terwijl je <kbd>Ctrl</kbd> ingedrukt houdt.
|
Om de oriëntatie en kanteling van de kaart te bepalen, kun je ook de kaart slepen terwijl je <kbd>Ctrl</kbd> ingedrukt houdt.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Volledig scherm
|
|
||||||
|
|
||||||
Start of stop volledig scherm modus.
|
|
||||||
Je kunt ook op <kbd>F11</kbd> drukken om te wisselen, of <kbd>Escape</kbd> om af te sluiten.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Akcje menu Widok
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Włącza lub wychodzi z widoku mapy 3D.
|
|||||||
Aby kontrolować orientację i pochylenie mapy, możesz również przeciągnąć mapę przytrzymując <kbd>Ctrl</kbd>.
|
Aby kontrolować orientację i pochylenie mapy, możesz również przeciągnąć mapę przytrzymując <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Ver opções
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Entrar ou sair da visualização do mapa 3D.
|
|||||||
Para controlar a orientação e a inclinação do mapa, você também pode arrastar o mapa enquanto segura <kbd>Ctrl</kbd>.
|
Para controlar a orientação e a inclinação do mapa, você também pode arrastar o mapa enquanto segura <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
Чтобы управлять ориентацией и наклоном карты, вы также можете перетаскивать карту, удерживая <kbd>Ctrl</kbd>.
|
Чтобы управлять ориентацией и наклоном карты, вы также можете перетаскивать карту, удерживая <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ Takođe možete se kretati kroz datoteke pomoću tastera sa strelicama na tasta
|
|||||||
|
|
||||||
Desnim klikom na karticu datoteke možete pristupiti istim radnjama kao u [meniju za uređivanje](./menu/edit).
|
Desnim klikom na karticu datoteke možete pristupiti istim radnjama kao u [meniju za uređivanje](./menu/edit).
|
||||||
|
|
||||||
### Raspored stabla
|
### Izgled drveta
|
||||||
|
|
||||||
Kao što je pomenuto u [odeljku sa opcijama prikaza](./menu/view), možete da pređete na izgled stabla za listu datoteka.
|
Kao što je pomenuto u [odeljku sa opcijama prikaza](./menu/view), možete da pređete na izgled stabla za listu datoteka.
|
||||||
Ovaj raspored je idealan za upravljanje velikim brojem otvorenih datoteka, jer ih organizuje u vertikalnu listu na desnoj strani mape.
|
Ovaj raspored je idealan za upravljanje velikim brojem otvorenih datoteka, jer ih organizuje u vertikalnu listu na desnoj strani mape.
|
||||||
@@ -74,9 +74,9 @@ Veličina profila nadmorske visine može se podesiti prevlačenjem separatora iz
|
|||||||
|
|
||||||
### Interaktivna statistika
|
### Interaktivna statistika
|
||||||
|
|
||||||
Kada se kursor zadrži iznad profila elevacije, prikazaće se objašnjenje statistike na poziciji kursora.
|
Kada pređete mišem preko profila nadmorske visine, opis alata će prikazati statistiku na poziciji kursora.
|
||||||
|
|
||||||
Da biste dobili statistiku za određeni deo profila visine, možete prevući pravougaonik za selekciju na profilu.
|
Da biste dobili statistiku za određeni deo profila nadmorske visine, možete prevući pravougaonik za izbor na profilu
|
||||||
Kliknite na profil da resetujete izbor.
|
Kliknite na profil da resetujete izbor.
|
||||||
|
|
||||||
Takođe možete da koristite točkić miša da zumirate i umanjite profil nadmorske visine i da se pomerate levo i desno prevlačenjem profila dok držite taster <kbd>Shift</kbd>.
|
Takođe možete da koristite točkić miša da zumirate i umanjite profil nadmorske visine i da se pomerate levo i desno prevlačenjem profila dok držite taster <kbd>Shift</kbd>.
|
||||||
@@ -98,12 +98,12 @@ Takođe možete da koristite točkić miša da zumirate i umanjite profil nadmo
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
### Dodatni podaci
|
### Additional data
|
||||||
|
|
||||||
Koristeći dugme <kbd><ChartNoAxesColumn size="16" class="inline-block" style="margin-bottom: 2px"/></kbd> u donjem desnom uglu profila visine, možete opciono obojiti profil visine pomoću:
|
Using the <kbd><ChartNoAxesColumn size="16" class="inline-block" style="margin-bottom: 2px"/></kbd> button at the bottom-right of the elevation profile, you can optionally color the elevation profile by:
|
||||||
|
|
||||||
- informacije o **nagibu** izračunate iz podataka o nadmorskoj visini, ili
|
- **slope** information computed from the elevation data, or
|
||||||
- Podaci o \*površini** ili **kategoriji** koji dolaze iz oznaka <a href="https://www.openstreetmap.org/" target="_blank">OpenStreetMap</a>'s <a href="https://wiki.openstreetmap.org/wiki/Key:surface" target="_blank">površina</a> and <a href="https://wiki.openstreetmap.org/wiki/Key:highway" target="_blank">autoput</a> oznake.
|
- **surface** or **category** data coming from <a href="https://www.openstreetmap.org/" target="_blank">OpenStreetMap</a>'s <a href="https://wiki.openstreetmap.org/wiki/Key:surface" target="_blank">surface</a> and <a href="https://wiki.openstreetmap.org/wiki/Key:highway" target="_blank">highway</a> tags.
|
||||||
Ovo je dostupno samo za datoteke kreirane pomoću **gpx.studio\*\*.
|
This is only available for files created with **gpx.studio**.
|
||||||
|
|
||||||
Ako vaš izbor to uključuje, možete vizualizovati i: **brzinu**, **puls**, **kadencu**, **temperaturu** i **snagu** na profilu nadmorske visine.
|
If your selection includes it, you can also visualize: **speed**, **heart rate**, **cadence**, **temperature** and **power** data on the elevation profile.
|
||||||
|
|||||||
@@ -9,9 +9,9 @@ title: Akcije uređivanja
|
|||||||
|
|
||||||
# { title }
|
# { title }
|
||||||
|
|
||||||
Za razliku od radnji sa datotekama, radnje uređivanja mogu potencijalno izmeniti sadržaj trenutno izabranih datoteka.
|
Unlike the file actions, the edit actions can potentially modify the content of the currently selected files.
|
||||||
Štaviše, kada je omogućen raspored stabla liste datoteka (pogledajte [Datoteke i statistika](../files-and-stats)), one se takođe mogu primeniti na [trase, segmente i tačke interesa](../gpx).
|
Moreover, when the tree layout of the files list is enabled (see [Files and statistics](../files-and-stats)), they can also be applied to [tracks, segments, and points of interest](../gpx).
|
||||||
Stoga ćemo elemente koji se mogu izmeniti ovim radnjama nazivati _stavkama datoteke_.
|
Therefore, we will refer to the elements that can be modified by these actions as _file items_.
|
||||||
Note that except for the undo and redo actions, the edit actions are also accessible through the context menu (right-click) of the file items.
|
Note that except for the undo and redo actions, the edit actions are also accessible through the context menu (right-click) of the file items.
|
||||||
|
|
||||||
### <Undo2 size="16" class="inline-block" style="margin-bottom: 2px" /><Redo2 size="16" class="inline-block" style="margin-bottom: 2px" /> Undo and redo
|
### <Undo2 size="16" class="inline-block" style="margin-bottom: 2px" /><Redo2 size="16" class="inline-block" style="margin-bottom: 2px" /> Undo and redo
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Radnje sa datotekama
|
title: File actions
|
||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
@@ -9,15 +9,15 @@ title: Radnje sa datotekama
|
|||||||
|
|
||||||
# { title }
|
# { title }
|
||||||
|
|
||||||
Meni sa akcijama za datoteke sadrži skup prilično samorazumljivih operacija sa datotekama.
|
The file actions menu contains a set of pretty self-explanatory file operations.
|
||||||
|
|
||||||
### <Plus size="16" class="inline-block" style="margin-bottom: 2px" /> Novo
|
### <Plus size="16" class="inline-block" style="margin-bottom: 2px" /> New
|
||||||
|
|
||||||
Napravite novu praznu datoteku.
|
Create a new empty file.
|
||||||
|
|
||||||
### <FolderOpen size="16" class="inline-block" style="margin-bottom: 2px" /> Otvoreno...
|
### <FolderOpen size="16" class="inline-block" style="margin-bottom: 2px" /> Open...
|
||||||
|
|
||||||
Otvorite datoteke sa računara.
|
Open files from your computer.
|
||||||
|
|
||||||
<DocsNote>
|
<DocsNote>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Podešavanja
|
title: Settings
|
||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
@@ -9,42 +9,42 @@ title: Podešavanja
|
|||||||
|
|
||||||
# { title }
|
# { title }
|
||||||
|
|
||||||
### <Ruler size="16" class="inline-block" style="margin-bottom: 2px" /> Jedinica razdaljine
|
### <Ruler size="16" class="inline-block" style="margin-bottom: 2px" /> Distance units
|
||||||
|
|
||||||
Promenite jedinice koje se koriste za prikazivanje udaljenosti u interfejsu.
|
Change the units used to display distances in the interface.
|
||||||
|
|
||||||
### <Zap size="16" class="inline-block" style="margin-bottom: 2px" /> Jedinice brzine
|
### <Zap size="16" class="inline-block" style="margin-bottom: 2px" /> Velocity units
|
||||||
|
|
||||||
Promenite jedinice koje se koriste za prikazivanje udaljenosti u interfejsu.
|
Change the units used to display velocities in the interface.
|
||||||
Možete birati između udaljenosti po satu ili minuta po udaljenosti, što može biti pogodnije za trčanje.
|
You can choose between distance per hour or minutes per distance, which can be more suitable for running activities.
|
||||||
|
|
||||||
### <Thermometer size="16" class="inline-block" style="margin-bottom: 2px" /> Jedinice temperature
|
### <Thermometer size="16" class="inline-block" style="margin-bottom: 2px" /> Temperature units
|
||||||
|
|
||||||
Promenite jedinice koje se koriste za prikazivanje udaljenosti u interfejsu.
|
Change the units used to display temperatures in the interface.
|
||||||
|
|
||||||
### <Languages size="16" class="inline-block" style="margin-bottom: 2px" /> Jezik
|
### <Languages size="16" class="inline-block" style="margin-bottom: 2px" /> Language
|
||||||
|
|
||||||
Promenite jezik koji se koristi u interfejsu.
|
Change the language used in the interface.
|
||||||
|
|
||||||
<DocsNote>
|
<DocsNote>
|
||||||
|
|
||||||
Možete doprineti dodavanjem ili poboljšanjem prevoda na našem <a href="https://crowdin.com/project/gpxstudio" target="_blank">Crowdin project</a>.
|
You can contribute by adding or improving translations on our <a href="https://crowdin.com/project/gpxstudio" target="_blank">Crowdin project</a>.
|
||||||
Ako želite da počnete sa prevođenjem na novi jezik, molimo vas <a href="#contact">get in touch</a>.
|
If you would like to start translating into a new language, please <a href="#contact">get in touch</a>.
|
||||||
Bilo kakva pomoć je veoma cenjena!
|
Any help is greatly appreciated!
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Sun size="16" class="inline-block" style="margin-bottom: 2px" /> Tema
|
### <Sun size="16" class="inline-block" style="margin-bottom: 2px" /> Theme
|
||||||
|
|
||||||
Promenite temu koja se koristi u interfejsu.
|
Change the theme used in the interface.
|
||||||
|
|
||||||
### I<PersonStanding size="16" class="inline-block" style="margin-bottom: 2px" /> Izvor prikaza ulice
|
### <PersonStanding size="16" class="inline-block" style="margin-bottom: 2px" /> Street view source
|
||||||
|
|
||||||
Promenite izvor koji se koristi za [kontrolu prikaza ulice](../map-controls).
|
Change the source used for the [street view control](../map-controls).
|
||||||
Podrazumevani je <a href="https://www.mapillary.com" target="_blank">Mapillary</a>, ali možete koristiti i <a href="https://www.google.com/streetview/" target="_blank">Google Street View</a>.
|
The default one is <a href="https://www.mapillary.com" target="_blank">Mapillary</a>, but you can also use <a href="https://www.google.com/streetview/" target="_blank">Google Street View</a>.
|
||||||
Saznajte više o tome kako da koristite kontrolu za prikaz ulice u [odeljku kontrole mape](../map-controls).
|
Learn more about how to use the street view control in the [map controls section](../map-controls).
|
||||||
|
|
||||||
### <Layers size="16" class="inline-block" style="margin-bottom: 2px" /> Slojevi mape...
|
### <Layers size="16" class="inline-block" style="margin-bottom: 2px" /> Map layers...
|
||||||
|
|
||||||
Otvorite dijalog u kojem možete omogućiti ili onemogućiti slojeve mape, dodati prilagođene, promeniti neprozirnost preklapanja i još mnogo toga.
|
Open a dialog where you can enable or disable map layers, add custom ones, change the opacity of overlays, and more.
|
||||||
Više informacija o slojevima mape možete pronaći u odeljku [kontrole mape](../map-controls).
|
More information about map layers can be found in the [map controls section](../map-controls).
|
||||||
|
|||||||
@@ -1,19 +1,19 @@
|
|||||||
---
|
---
|
||||||
title: Opcije prikaza
|
title: View options
|
||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
# { title }
|
# { title }
|
||||||
|
|
||||||
Ovaj meni pruža opcije za promenu rasporeda interfejsa i prikaza mape.
|
This menu provides options to rearrange the interface and the map view.
|
||||||
|
|
||||||
### <ChartArea size="16" class="inline-block" style="margin-bottom: 2px" /> Visinski profil
|
### <ChartArea size="16" class="inline-block" style="margin-bottom: 2px" /> Elevation profile
|
||||||
|
|
||||||
Sakrijte profil nadmorske visine da biste napravili mesta za mapu ili ga prikažite da biste pregledali trenutni izbor.
|
Hide the elevation profile to make room for the map, or show it to inspect the current selection.
|
||||||
|
|
||||||
### <ListTree size="16" class="inline-block" style="margin-bottom: 2px" /> File tree
|
### <ListTree size="16" class="inline-block" style="margin-bottom: 2px" /> File tree
|
||||||
|
|
||||||
@@ -21,7 +21,7 @@ Toggle the tree layout for the [file list](../files-and-stats).
|
|||||||
Ovaj raspored je idealan za upravljanje velikim brojem otvorenih datoteka, jer ih organizuje u vertikalnu listu na desnoj strani mape.
|
Ovaj raspored je idealan za upravljanje velikim brojem otvorenih datoteka, jer ih organizuje u vertikalnu listu na desnoj strani mape.
|
||||||
In addition, the file tree view enables you to inspect the [tracks, segments, and points of interest](../gpx) contained inside the files through collapsible sections.
|
In addition, the file tree view enables you to inspect the [tracks, segments, and points of interest](../gpx) contained inside the files through collapsible sections.
|
||||||
|
|
||||||
### <Map size="16" class="inline-block" style="margin-bottom: 2px" /> Vrati prethodnu osnovnu mapu
|
### <Map size="16" class="inline-block" style="margin-bottom: 2px" /> Switch to previous basemap
|
||||||
|
|
||||||
Change the basemap to the one previously selected through the [map layer control](../map-controls).
|
Change the basemap to the one previously selected through the [map layer control](../map-controls).
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Očisti
|
title: Clean
|
||||||
---
|
---
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -9,9 +9,9 @@ title: Očisti
|
|||||||
|
|
||||||
# <SquareDashedMousePointer size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
# <SquareDashedMousePointer size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||||||
|
|
||||||
Kada je izabran alat za čišćenje, prevlačenjem mape će se kreirati pravougaoni izbor.
|
When the clean tool is selected, dragging the map will create a rectangular selection.
|
||||||
|
|
||||||
U zavisnosti od opcija izabranih u dijalogu prikazanom ispod, klikom na dugme za brisanje uklonićete GPS tačke i/ili [tačke interesa](../gpx) koje se nalaze unutar ili van selekcije.
|
Depending on the options selected in the dialog shown below, clicking the delete button will remove GPS points and/or [points of interest](../gpx) located either inside or outside the selection.
|
||||||
|
|
||||||
<div class="flex flex-row justify-center">
|
<div class="flex flex-row justify-center">
|
||||||
<Clean class="text-foreground p-3 border rounded-md shadow-lg" />
|
<Clean class="text-foreground p-3 border rounded-md shadow-lg" />
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Nadmorska visina
|
title: Elevation
|
||||||
---
|
---
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -10,7 +10,7 @@ title: Nadmorska visina
|
|||||||
|
|
||||||
# <MountainSnow size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
# <MountainSnow size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||||||
|
|
||||||
Ovaj alat vam omogućava da dodate podatke o nadmorskoj visini trasama i [tačkama interesa](../gpx), ili da zamenite postojeće podatke.
|
This tool allows you to add elevation data to traces and [points of interest](../gpx), or to replace the existing data.
|
||||||
|
|
||||||
<div class="flex flex-row justify-center">
|
<div class="flex flex-row justify-center">
|
||||||
<Elevation class="text-foreground p-3 border rounded-md shadow-lg" />
|
<Elevation class="text-foreground p-3 border rounded-md shadow-lg" />
|
||||||
@@ -18,7 +18,7 @@ Ovaj alat vam omogućava da dodate podatke o nadmorskoj visini trasama i [tačk
|
|||||||
|
|
||||||
<DocsNote>
|
<DocsNote>
|
||||||
|
|
||||||
Podatke o nadmorskoj visini obezbeđuje <a href="https://maptiler.com" target="_blank">MapTiler</a>.
|
Elevation data is provided by <a href="https://maptiler.com" target="_blank">MapTiler</a>.
|
||||||
Više o njegovom poreklu i tačnosti možete saznati u <a href="https://docs.maptiler.com/guides/map-tiling-hosting/data-hosting/rgb-terrain-by-maptiler/" target="_blank">dokumentaciji</a>.
|
You can learn more about its origin and accuracy in the <a href="https://docs.maptiler.com/guides/map-tiling-hosting/data-hosting/rgb-terrain-by-maptiler/" target="_blank">documentation</a>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Raspakuj
|
title: Extract
|
||||||
---
|
---
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -10,17 +10,17 @@ title: Raspakuj
|
|||||||
|
|
||||||
# <Ungroup size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
# <Ungroup size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||||||
|
|
||||||
Ovaj alat vam omogućava da izdvojite [numere (ili segmente)](../gpx) iz datoteka (ili numera) koje sadrže više njih.
|
This tool allows you to extract [tracks (or segments)](../gpx) from files (or tracks) containing multiple of them.
|
||||||
|
|
||||||
<div class="flex flex-row justify-center">
|
<div class="flex flex-row justify-center">
|
||||||
<Extract class="text-foreground p-3 border rounded-md shadow-lg" />
|
<Extract class="text-foreground p-3 border rounded-md shadow-lg" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
Primenom alata na datoteku koja sadrži više numera kreiraće se nova datoteka za svaku od numera koje sadrži.
|
Applying the tool to a file containing multiple tracks will create a new file for each of the tracks it contains.
|
||||||
Slično tome, primena alata na numeru koja sadrži više segmenata će kreirati (u istoj datoteci) novu numeru za svaki od segmenata koje sadrži.
|
Similarly, applying the tool to a track containing multiple segments will create (in the same file) a new track for each of the segments it contains.
|
||||||
|
|
||||||
<DocsNote>
|
<DocsNote>
|
||||||
|
|
||||||
Prilikom izdvajanja tragova iz datoteke koja sadrži <a href="../gpx">tačke interesa</a>, alat će automatski dodeliti svaku tačku interesa trasi kojoj je najbliža.
|
When extracting the tracks from a file containing <a href="../gpx">points of interest</a>, the tool will automatically assign each point of interest to the track it is closest to.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Spojiti
|
title: Merge
|
||||||
---
|
---
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -10,16 +10,16 @@ title: Spojiti
|
|||||||
|
|
||||||
# <Group size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
# <Group size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||||||
|
|
||||||
Da biste koristili ovaj alat, potrebno je da [izaberete](../files-and-stats) više datoteka, [tragova ili segmenata](../gpx).
|
To use this tool, you need to [select](../files-and-stats) multiple files, [tracks, or segments](../gpx).
|
||||||
|
|
||||||
- Ako vam je cilj da kreirate jedan kontinuirani trag iz vašeg izbora, koristite opciju **Poveži tragove** i potvrdite.
|
- If your goal is to create a single continuous trace from your selection, use the **Connect the traces** option and validate.
|
||||||
- Druga opcija se može koristiti za kreiranje ili upravljanje datotekama sa više [numera ili segmenata](../gpx).
|
- The second option can be used to create or manage files with multiple [tracks or segments](../gpx).
|
||||||
Spajanje datoteka (ili numera) će rezultirati jednom datotekom (ili numerom) koja sadrži sve numere (ili segmente) iz selekcije.
|
Merging files (or tracks) will result in a single file (or track) containing all tracks (or segments) from the selection.
|
||||||
|
|
||||||
<DocsNote>
|
<DocsNote>
|
||||||
|
|
||||||
Izabrane stavke se spajaju redosledom kojim se pojavljuju na listi datoteka.
|
Selected items are merged in the order they appear in the files list.
|
||||||
Promenite redosled stavki prevlačenjem i ispuštanjem ako je potrebno.
|
Reorder items by drag-and-drop if needed.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Tačke interesa
|
title: Points of interest
|
||||||
---
|
---
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -9,19 +9,19 @@ title: Tačke interesa
|
|||||||
|
|
||||||
# <MapPin size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
# <MapPin size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||||||
|
|
||||||
[Tačke interesa](../gpx) mogu se dodati GPX datotekama da bi se označile lokacije od interesa na mapi i prikazale na vašem GPS uređaju.
|
[Points of interest](../gpx) can be added to GPX files to mark locations of interest on the map and display them on your GPS device.
|
||||||
|
|
||||||
### Uređivanje tačke interesa
|
### Creating a point of interest
|
||||||
|
|
||||||
Da biste kreirali tačku interesovanja, popunite obrazac prikazan ispod.
|
To create a point of interest, fill in the form shown below.
|
||||||
Lokaciju tačke interesovanja možete odabrati klikom na mapu ili ručnim unosom koordinata.
|
You can choose the location of the point of interest either by clicking on the map or by entering the coordinates manually.
|
||||||
Potvrdite obrazac kada završite.
|
Validate the form when you are done.
|
||||||
|
|
||||||
<div class="flex flex-row justify-center">
|
<div class="flex flex-row justify-center">
|
||||||
<Waypoint class="text-foreground p-3 border rounded-md shadow-lg" />
|
<Waypoint class="text-foreground p-3 border rounded-md shadow-lg" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
### Uređivanje tačke interesa
|
### Editing a point of interest
|
||||||
|
|
||||||
Gornji obrazac se takođe može koristiti za uređivanje postojeće tačke interesovanja nakon što je odaberete na mapi.
|
The form above can also be used to edit an existing point of interest after selecting it on the map.
|
||||||
Ako samo treba da pomerite tačku interesovanja, možete je prevući na željenu lokaciju.
|
If you only need to move the point of interest, you can drag it to the desired location.
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ title: Route planning and editing
|
|||||||
|
|
||||||
The route planning and editing tool allows you to create and edit routes by placing or moving anchor points on the map.
|
The route planning and editing tool allows you to create and edit routes by placing or moving anchor points on the map.
|
||||||
|
|
||||||
## Podešavanja
|
## Settings
|
||||||
|
|
||||||
As shown below, the tool dialog contains a few settings to control the routing behavior.
|
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>.
|
You can minimize the dialog to save space by clicking on <button><SquareArrowUpLeft size="16" class="inline-block" style="margin-bottom: 2px" /></button>.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Iseci i podeli
|
title: Crop and split
|
||||||
---
|
---
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -10,7 +10,7 @@ title: Iseci i podeli
|
|||||||
|
|
||||||
# <ScissorsIcon size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
# <ScissorsIcon size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||||||
|
|
||||||
## Iseci
|
## Crop
|
||||||
|
|
||||||
Using the slider, you can define the part of the selected trace that you want to keep.
|
Using the slider, you can define the part of the selected trace that you want to keep.
|
||||||
The start and end markers on the map and the [statistics and elevation profile](../files-and-stats) are updated in real time to reflect the selection.
|
The start and end markers on the map and the [statistics and elevation profile](../files-and-stats) are updated in real time to reflect the selection.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
---
|
---
|
||||||
title: Vreme
|
title: Time
|
||||||
---
|
---
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@@ -10,18 +10,18 @@ title: Vreme
|
|||||||
|
|
||||||
# <CalendarClock size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
# <CalendarClock size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||||||
|
|
||||||
Ovaj alat vam omogućava da promenite ili dodate vremenske oznake tragu.
|
This tool allows you to change or add timestamps to a trace.
|
||||||
Jednostavno treba da koristite obrazac prikazan ispod i da ga potvrdite kada završite.
|
You simply need to use the form shown below and validate it when you are done.
|
||||||
|
|
||||||
<div class="flex flex-row justify-center">
|
<div class="flex flex-row justify-center">
|
||||||
<Time class="text-foreground p-3 border rounded-md shadow-lg" />
|
<Time class="text-foreground p-3 border rounded-md shadow-lg" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
Kada uređujete brzinu, vreme kretanja se shodno tome prilagođava u formi i obrnuto.
|
When you edit the speed, the moving time is adapted accordingly in the form, and vice versa.
|
||||||
Slično tome, kada izmenite vreme početka, vreme završetka se ažurira kako bi se zadržalo isto ukupno trajanje i obrnuto.
|
Similarly, when you edit the start time, the end time is updated to keep the same total duration, and vice versa.
|
||||||
|
|
||||||
<DocsNote>
|
<DocsNote>
|
||||||
|
|
||||||
Kada koristite ovaj alat sa postojećim vremenskim oznakama, promena vremena ili brzine će ih jednostavno pomeriti, rastegnuti ili kompresovati u skladu sa tim.
|
When using this tool with existing timestamps, changing the time or speed will simply shift, stretch, or compress them accordingly.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: Görünüm seçenekleri
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Yön işaretlerinin haritada görünürlülüğünü değiştir.
|
|||||||
Haritanın oryantasyonunu ve eğimini <kbd>Ctrl</kbd> basılı tutarken sürükleyerek de yapabilirsiniz.
|
Haritanın oryantasyonunu ve eğimini <kbd>Ctrl</kbd> basılı tutarken sürükleyerek de yapabilirsiniz.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: View options
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ Enter or exit the 3D map view.
|
|||||||
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
To control the orientation and tilt of the map, you can also drag the map while holding <kbd>Ctrl</kbd>.
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> Full screen
|
|
||||||
|
|
||||||
Enter or exit full screen mode.
|
|
||||||
You can also press <kbd>F11</kbd> to toggle, or <kbd>Escape</kbd> to exit.
|
|
||||||
|
|||||||
@@ -69,4 +69,4 @@ Hover over the map to show the <a href="https://hiking.waymarkedtrails.org" targ
|
|||||||
|
|
||||||
还可以设置叠加层的不透明度。
|
还可以设置叠加层的不透明度。
|
||||||
|
|
||||||
本站还支持通过添加 <a href="https://en.wikipedia.org/wiki/Web_Map_Tile_Service" target="_blank">WMTS</a>, <a href="https://en.wikipedia.org/wiki/Web_Map_Service" target="_blank">WMS</a>, or <a href="https://maplibre.org/maplibre-style-spec/" target="_blank">MapLibre JSON</a> 链接的方式来自定义底图和叠加层。
|
For advanced users, it is possible to add custom basemaps and overlays by providing <a href="https://en.wikipedia.org/wiki/Web_Map_Tile_Service" target="_blank">WMTS</a>, <a href="https://en.wikipedia.org/wiki/Web_Map_Service" target="_blank">WMS</a>, or <a href="https://maplibre.org/maplibre-style-spec/" target="_blank">MapLibre style JSON</a> URLs.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ title: 显示
|
|||||||
---
|
---
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box, Maximize2 } from '@lucide/svelte';
|
import { ChartArea, ListTree, Map, Layers2, Coins, Milestone, Box } from '@lucide/svelte';
|
||||||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -47,8 +47,3 @@ title: 显示
|
|||||||
也可在按住 <kbd>Ctrl</kbd> 的同时用鼠标拖拽地图实现此功能。
|
也可在按住 <kbd>Ctrl</kbd> 的同时用鼠标拖拽地图实现此功能。
|
||||||
|
|
||||||
</DocsNote>
|
</DocsNote>
|
||||||
|
|
||||||
### <Maximize2 size="16" class="inline-block" style="margin-bottom: 2px" /> 全屏
|
|
||||||
|
|
||||||
进入或退出全屏模式。
|
|
||||||
你也可以按 <kbd>F11</kbd> 来切换,也可以按 <kbd>Escape</kbd> 来退出。
|
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Switch to previous basemap",
|
"switch_basemap": "Switch to previous basemap",
|
||||||
"toggle_overlays": "Toggle overlays",
|
"toggle_overlays": "Toggle overlays",
|
||||||
"toggle_3d": "Toggle 3D",
|
"toggle_3d": "Toggle 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Налады",
|
"settings": "Налады",
|
||||||
"distance_units": "Адзінкі вымярэння адлегласці",
|
"distance_units": "Адзінкі вымярэння адлегласці",
|
||||||
"metric": "Метрычная",
|
"metric": "Метрычная",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Canviar al mapa base anterior",
|
"switch_basemap": "Canviar al mapa base anterior",
|
||||||
"toggle_overlays": "Intercanvia capes",
|
"toggle_overlays": "Intercanvia capes",
|
||||||
"toggle_3d": "Canvia a 3D",
|
"toggle_3d": "Canvia a 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Configuració",
|
"settings": "Configuració",
|
||||||
"distance_units": "Unitats de distancia",
|
"distance_units": "Unitats de distancia",
|
||||||
"metric": "Mètric",
|
"metric": "Mètric",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Přepnout na předchozí podkladovou mapu",
|
"switch_basemap": "Přepnout na předchozí podkladovou mapu",
|
||||||
"toggle_overlays": "Přepnout překryv",
|
"toggle_overlays": "Přepnout překryv",
|
||||||
"toggle_3d": "Přepnout 3D",
|
"toggle_3d": "Přepnout 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Nastavení",
|
"settings": "Nastavení",
|
||||||
"distance_units": "Jednotky vzdálenosti",
|
"distance_units": "Jednotky vzdálenosti",
|
||||||
"metric": "Metrické",
|
"metric": "Metrické",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Switch to previous basemap",
|
"switch_basemap": "Switch to previous basemap",
|
||||||
"toggle_overlays": "Toggle overlays",
|
"toggle_overlays": "Toggle overlays",
|
||||||
"toggle_3d": "Toggle 3D",
|
"toggle_3d": "Toggle 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
"distance_units": "Distance units",
|
"distance_units": "Distance units",
|
||||||
"metric": "Metric",
|
"metric": "Metric",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Zur vorherigen Basemap wechseln",
|
"switch_basemap": "Zur vorherigen Basemap wechseln",
|
||||||
"toggle_overlays": "Overlay umschalten",
|
"toggle_overlays": "Overlay umschalten",
|
||||||
"toggle_3d": "3D umschalten",
|
"toggle_3d": "3D umschalten",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Einstellungen",
|
"settings": "Einstellungen",
|
||||||
"distance_units": "Entfernungseinheiten",
|
"distance_units": "Entfernungseinheiten",
|
||||||
"metric": "Metrisch",
|
"metric": "Metrisch",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Switch to previous basemap",
|
"switch_basemap": "Switch to previous basemap",
|
||||||
"toggle_overlays": "Toggle overlays",
|
"toggle_overlays": "Toggle overlays",
|
||||||
"toggle_3d": "Toggle 3D",
|
"toggle_3d": "Toggle 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
"distance_units": "Μονάδες απόστασης",
|
"distance_units": "Μονάδες απόστασης",
|
||||||
"metric": "Μονάδες Μέτρησης",
|
"metric": "Μονάδες Μέτρησης",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Switch to previous basemap",
|
"switch_basemap": "Switch to previous basemap",
|
||||||
"toggle_overlays": "Toggle overlays",
|
"toggle_overlays": "Toggle overlays",
|
||||||
"toggle_3d": "Toggle 3D",
|
"toggle_3d": "Toggle 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
"distance_units": "Distance units",
|
"distance_units": "Distance units",
|
||||||
"metric": "Metric",
|
"metric": "Metric",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Cambiar al mapa base anterior",
|
"switch_basemap": "Cambiar al mapa base anterior",
|
||||||
"toggle_overlays": "Alternar capas",
|
"toggle_overlays": "Alternar capas",
|
||||||
"toggle_3d": "Alternar 3D",
|
"toggle_3d": "Alternar 3D",
|
||||||
"fullscreen": "Pantalla completa",
|
|
||||||
"settings": "Configuración",
|
"settings": "Configuración",
|
||||||
"distance_units": "Unidades de distancia",
|
"distance_units": "Unidades de distancia",
|
||||||
"metric": "Métrico",
|
"metric": "Métrico",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Aldatu aurreko mapa erabiltzera",
|
"switch_basemap": "Aldatu aurreko mapa erabiltzera",
|
||||||
"toggle_overlays": "Txandakatu geruzak",
|
"toggle_overlays": "Txandakatu geruzak",
|
||||||
"toggle_3d": "Txandakatu 3D",
|
"toggle_3d": "Txandakatu 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Ezarpenak",
|
"settings": "Ezarpenak",
|
||||||
"distance_units": "Distantzia unitateak",
|
"distance_units": "Distantzia unitateak",
|
||||||
"metric": "Metrikoa",
|
"metric": "Metrikoa",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Vaihda edelliseen taustakarttaan",
|
"switch_basemap": "Vaihda edelliseen taustakarttaan",
|
||||||
"toggle_overlays": "Peiteaineistot päälle/pois",
|
"toggle_overlays": "Peiteaineistot päälle/pois",
|
||||||
"toggle_3d": "3D päälle/pois",
|
"toggle_3d": "3D päälle/pois",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Asetukset",
|
"settings": "Asetukset",
|
||||||
"distance_units": "Mittayksikkö",
|
"distance_units": "Mittayksikkö",
|
||||||
"metric": "Metri",
|
"metric": "Metri",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Basculer au fond de carte précédent",
|
"switch_basemap": "Basculer au fond de carte précédent",
|
||||||
"toggle_overlays": "Afficher/cacher les surcouches",
|
"toggle_overlays": "Afficher/cacher les surcouches",
|
||||||
"toggle_3d": "Activer/désactiver la 3D",
|
"toggle_3d": "Activer/désactiver la 3D",
|
||||||
"fullscreen": "Plein écran",
|
|
||||||
"settings": "Réglages",
|
"settings": "Réglages",
|
||||||
"distance_units": "Unités de distance",
|
"distance_units": "Unités de distance",
|
||||||
"metric": "Métrique",
|
"metric": "Métrique",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Switch to previous basemap",
|
"switch_basemap": "Switch to previous basemap",
|
||||||
"toggle_overlays": "Toggle overlays",
|
"toggle_overlays": "Toggle overlays",
|
||||||
"toggle_3d": "Toggle 3D",
|
"toggle_3d": "Toggle 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "הגדרות",
|
"settings": "הגדרות",
|
||||||
"distance_units": "יחידות מרחק",
|
"distance_units": "יחידות מרחק",
|
||||||
"metric": "מטרי",
|
"metric": "מטרי",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Váltás az előző alaptérképre",
|
"switch_basemap": "Váltás az előző alaptérképre",
|
||||||
"toggle_overlays": "Átfedés váltása",
|
"toggle_overlays": "Átfedés váltása",
|
||||||
"toggle_3d": "3D nézet bekapcsolása",
|
"toggle_3d": "3D nézet bekapcsolása",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Beállítások",
|
"settings": "Beállítások",
|
||||||
"distance_units": "Távolságmérés mértékegységei",
|
"distance_units": "Távolságmérés mértékegységei",
|
||||||
"metric": "Metrikus",
|
"metric": "Metrikus",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Beralih ke peta dasar sebelumnya",
|
"switch_basemap": "Beralih ke peta dasar sebelumnya",
|
||||||
"toggle_overlays": "Beralih lapisan",
|
"toggle_overlays": "Beralih lapisan",
|
||||||
"toggle_3d": "Beralih 3D",
|
"toggle_3d": "Beralih 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Pengaturan",
|
"settings": "Pengaturan",
|
||||||
"distance_units": "Satuan jarak",
|
"distance_units": "Satuan jarak",
|
||||||
"metric": "Metrik",
|
"metric": "Metrik",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Passa alla mappa di base precedente",
|
"switch_basemap": "Passa alla mappa di base precedente",
|
||||||
"toggle_overlays": "Attiva / disattiva le sovrapposizioni",
|
"toggle_overlays": "Attiva / disattiva le sovrapposizioni",
|
||||||
"toggle_3d": "Attiva / disattiva 3D",
|
"toggle_3d": "Attiva / disattiva 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Impostazioni",
|
"settings": "Impostazioni",
|
||||||
"distance_units": "Unità distanza",
|
"distance_units": "Unità distanza",
|
||||||
"metric": "Metrico",
|
"metric": "Metrico",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "이전 배경 지도로 전환",
|
"switch_basemap": "이전 배경 지도로 전환",
|
||||||
"toggle_overlays": "오버레이 전환",
|
"toggle_overlays": "오버레이 전환",
|
||||||
"toggle_3d": "3D 전환",
|
"toggle_3d": "3D 전환",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "설정",
|
"settings": "설정",
|
||||||
"distance_units": "거리 단위",
|
"distance_units": "거리 단위",
|
||||||
"metric": "미터법",
|
"metric": "미터법",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Grįžti į ankstesnį bazinį žemėlapį",
|
"switch_basemap": "Grįžti į ankstesnį bazinį žemėlapį",
|
||||||
"toggle_overlays": "Kaitalioti sluoksnius",
|
"toggle_overlays": "Kaitalioti sluoksnius",
|
||||||
"toggle_3d": "Kaitalioti rodymą 3D",
|
"toggle_3d": "Kaitalioti rodymą 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Nustatymai",
|
"settings": "Nustatymai",
|
||||||
"distance_units": "Atstumo vienetai",
|
"distance_units": "Atstumo vienetai",
|
||||||
"metric": "Metriniai",
|
"metric": "Metriniai",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Switch to previous basemap",
|
"switch_basemap": "Switch to previous basemap",
|
||||||
"toggle_overlays": "Toggle overlays",
|
"toggle_overlays": "Toggle overlays",
|
||||||
"toggle_3d": "Toggle 3D",
|
"toggle_3d": "Toggle 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
"distance_units": "Distance units",
|
"distance_units": "Distance units",
|
||||||
"metric": "Metric",
|
"metric": "Metric",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Schakel over naar vorige basiskaart",
|
"switch_basemap": "Schakel over naar vorige basiskaart",
|
||||||
"toggle_overlays": "Schermlagen in- of uitschakelen",
|
"toggle_overlays": "Schermlagen in- of uitschakelen",
|
||||||
"toggle_3d": "3D aan/uit",
|
"toggle_3d": "3D aan/uit",
|
||||||
"fullscreen": "Volledig scherm",
|
|
||||||
"settings": "Instellingen",
|
"settings": "Instellingen",
|
||||||
"distance_units": "Afstandseenheden",
|
"distance_units": "Afstandseenheden",
|
||||||
"metric": "Metrische eenheden",
|
"metric": "Metrische eenheden",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Bytt til forrige basekart",
|
"switch_basemap": "Bytt til forrige basekart",
|
||||||
"toggle_overlays": "Vis eller skjul kartlag",
|
"toggle_overlays": "Vis eller skjul kartlag",
|
||||||
"toggle_3d": "Skru av/på 3D",
|
"toggle_3d": "Skru av/på 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Innstillinger",
|
"settings": "Innstillinger",
|
||||||
"distance_units": "Avstandsenhet",
|
"distance_units": "Avstandsenhet",
|
||||||
"metric": "Metrisk",
|
"metric": "Metrisk",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Przełącz na poprzednią mapę",
|
"switch_basemap": "Przełącz na poprzednią mapę",
|
||||||
"toggle_overlays": "Przełącz nakładki",
|
"toggle_overlays": "Przełącz nakładki",
|
||||||
"toggle_3d": "Przełącz widok 3D",
|
"toggle_3d": "Przełącz widok 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Ustawienia",
|
"settings": "Ustawienia",
|
||||||
"distance_units": "Jednostki odległości",
|
"distance_units": "Jednostki odległości",
|
||||||
"metric": "Metryczne",
|
"metric": "Metryczne",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Trocar para mapa base anterior",
|
"switch_basemap": "Trocar para mapa base anterior",
|
||||||
"toggle_overlays": "Alternar sobreposições",
|
"toggle_overlays": "Alternar sobreposições",
|
||||||
"toggle_3d": "Alternar 3D",
|
"toggle_3d": "Alternar 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Configurações",
|
"settings": "Configurações",
|
||||||
"distance_units": "Unidades de distância",
|
"distance_units": "Unidades de distância",
|
||||||
"metric": "Métrico",
|
"metric": "Métrico",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Trocar para mapa base anterior",
|
"switch_basemap": "Trocar para mapa base anterior",
|
||||||
"toggle_overlays": "Alternar sobreposições",
|
"toggle_overlays": "Alternar sobreposições",
|
||||||
"toggle_3d": "Alternar 3D",
|
"toggle_3d": "Alternar 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Configurações",
|
"settings": "Configurações",
|
||||||
"distance_units": "Unidades de distância",
|
"distance_units": "Unidades de distância",
|
||||||
"metric": "Métrico",
|
"metric": "Métrico",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Comutați la harta de bază anterioară",
|
"switch_basemap": "Comutați la harta de bază anterioară",
|
||||||
"toggle_overlays": "Comută suprapunerile",
|
"toggle_overlays": "Comută suprapunerile",
|
||||||
"toggle_3d": "Comută 3D",
|
"toggle_3d": "Comută 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Setări",
|
"settings": "Setări",
|
||||||
"distance_units": "Unități de distanță",
|
"distance_units": "Unități de distanță",
|
||||||
"metric": "Metric",
|
"metric": "Metric",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Переключиться на предыдущую базовую карту",
|
"switch_basemap": "Переключиться на предыдущую базовую карту",
|
||||||
"toggle_overlays": "Переключить слои",
|
"toggle_overlays": "Переключить слои",
|
||||||
"toggle_3d": "Включить 3D",
|
"toggle_3d": "Включить 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Настройки",
|
"settings": "Настройки",
|
||||||
"distance_units": "Единицы измерения расстояния",
|
"distance_units": "Единицы измерения расстояния",
|
||||||
"metric": "Метрические",
|
"metric": "Метрические",
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
"undo": "Poništi",
|
"undo": "Poništi",
|
||||||
"redo": "Vrati poništeno",
|
"redo": "Vrati poništeno",
|
||||||
"delete": "Obriši",
|
"delete": "Obriši",
|
||||||
"delete_all": "Izbriši sve",
|
"delete_all": "Delete all",
|
||||||
"select_all": "Izaberi sve",
|
"select_all": "Izaberi sve",
|
||||||
"view": "Pogledaj",
|
"view": "Pogledaj",
|
||||||
"elevation_profile": "Visinski profil",
|
"elevation_profile": "Visinski profil",
|
||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Vrati prethodnu osnovnu mapu",
|
"switch_basemap": "Vrati prethodnu osnovnu mapu",
|
||||||
"toggle_overlays": "Sakrij/Prikaži preklapanja",
|
"toggle_overlays": "Sakrij/Prikaži preklapanja",
|
||||||
"toggle_3d": "Sakrij/Prikaži 3D",
|
"toggle_3d": "Sakrij/Prikaži 3D",
|
||||||
"fullscreen": "Ceo ekran",
|
|
||||||
"settings": "Podešavanja",
|
"settings": "Podešavanja",
|
||||||
"distance_units": "Jedinica razdaljine",
|
"distance_units": "Jedinica razdaljine",
|
||||||
"metric": "Metričke",
|
"metric": "Metričke",
|
||||||
@@ -64,7 +63,7 @@
|
|||||||
"ctrl": "Ctrl",
|
"ctrl": "Ctrl",
|
||||||
"click": "Klik",
|
"click": "Klik",
|
||||||
"drag": "Prevucite",
|
"drag": "Prevucite",
|
||||||
"right_click_drag": "Prevlačenje desnim klikom",
|
"right_click_drag": "Right-click drag",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"button": "Informacije...",
|
"button": "Informacije...",
|
||||||
"name": "Naziv",
|
"name": "Naziv",
|
||||||
@@ -82,7 +81,7 @@
|
|||||||
"center": "Centar",
|
"center": "Centar",
|
||||||
"open_in": "Otvorite u",
|
"open_in": "Otvorite u",
|
||||||
"copy_coordinates": "Kopiraj koordinate",
|
"copy_coordinates": "Kopiraj koordinate",
|
||||||
"edit_osm": "Uredi u OpenStreetMap-u"
|
"edit_osm": "Edit in OpenStreetMap"
|
||||||
},
|
},
|
||||||
"toolbar": {
|
"toolbar": {
|
||||||
"routing": {
|
"routing": {
|
||||||
@@ -192,8 +191,8 @@
|
|||||||
"from": "Početna tačka je predaleko od najbližeg puta",
|
"from": "Početna tačka je predaleko od najbližeg puta",
|
||||||
"via": "Putna tačka je predaleko od najbližeg puta",
|
"via": "Putna tačka je predaleko od najbližeg puta",
|
||||||
"to": "Krajnja tačka je predaleko od najbližeg puta",
|
"to": "Krajnja tačka je predaleko od najbližeg puta",
|
||||||
"distance": "Krajnja tačka je predaleko od najbližeg puta",
|
"distance": "The end point is too far from the start point",
|
||||||
"connection": "Nije pronađena veza između tačaka",
|
"connection": "No connection found between the points",
|
||||||
"timeout": "Računanje rute je trajalo predugo, pokušajte da dodate putne tačke bliže jednu drugoj"
|
"timeout": "Računanje rute je trajalo predugo, pokušajte da dodate putne tačke bliže jednu drugoj"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -235,7 +234,7 @@
|
|||||||
},
|
},
|
||||||
"elevation": {
|
"elevation": {
|
||||||
"button": "Zatražite podatke o nadmorskoj visini",
|
"button": "Zatražite podatke o nadmorskoj visini",
|
||||||
"help": "Zahtevanje podataka o nadmorskoj visini će obrisati postojeće podatke o nadmorskoj visini, ako ih ima, i zameniti ih podacima iz MapTiler-a.",
|
"help": "Requesting elevation data will erase the existing elevation data, if any, and replace it with data from MapTiler.",
|
||||||
"help_no_selection": "Izaberite stavku datoteke da biste zatražili podatke o nadmorskoj visini."
|
"help_no_selection": "Izaberite stavku datoteke da biste zatražili podatke o nadmorskoj visini."
|
||||||
},
|
},
|
||||||
"waypoint": {
|
"waypoint": {
|
||||||
@@ -277,7 +276,7 @@
|
|||||||
"new": "Novi prilagođeni sloj",
|
"new": "Novi prilagođeni sloj",
|
||||||
"edit": "Uredite prilagođeni sloj",
|
"edit": "Uredite prilagođeni sloj",
|
||||||
"urls": "URL(s)",
|
"urls": "URL(s)",
|
||||||
"url_placeholder": "JSON u stilu WMTS, WMS ili MapLibre",
|
"url_placeholder": "WMTS, WMS or MapLibre style JSON",
|
||||||
"max_zoom": "Maksimalno uvećanje",
|
"max_zoom": "Maksimalno uvećanje",
|
||||||
"layer_type": "Tip sloja",
|
"layer_type": "Tip sloja",
|
||||||
"basemap": "Osnovna mapa",
|
"basemap": "Osnovna mapa",
|
||||||
@@ -286,7 +285,7 @@
|
|||||||
"update": "Ažurirajte sloj"
|
"update": "Ažurirajte sloj"
|
||||||
},
|
},
|
||||||
"opacity": "Providnost preklapanja",
|
"opacity": "Providnost preklapanja",
|
||||||
"terrain": "Izvor terena",
|
"terrain": "Terrain source",
|
||||||
"label": {
|
"label": {
|
||||||
"basemaps": "Osnovne mape",
|
"basemaps": "Osnovne mape",
|
||||||
"overlays": "Preklapanja",
|
"overlays": "Preklapanja",
|
||||||
@@ -333,7 +332,7 @@
|
|||||||
"usgs": "USGS",
|
"usgs": "USGS",
|
||||||
"bikerouterGravel": "bikerouter.de Gravel",
|
"bikerouterGravel": "bikerouter.de Gravel",
|
||||||
"cyclOSMlite": "CyclOSM Lite",
|
"cyclOSMlite": "CyclOSM Lite",
|
||||||
"mapterhornHillshade": "Mapterhorn Hilshejd",
|
"mapterhornHillshade": "Mapterhorn Hillshade",
|
||||||
"openRailwayMap": "OpenRailwayMap",
|
"openRailwayMap": "OpenRailwayMap",
|
||||||
"swisstopoSlope": "swisstopo Slope",
|
"swisstopoSlope": "swisstopo Slope",
|
||||||
"swisstopoHiking": "swisstopo Hiking",
|
"swisstopoHiking": "swisstopo Hiking",
|
||||||
@@ -363,7 +362,7 @@
|
|||||||
"water": "Voda",
|
"water": "Voda",
|
||||||
"shower": "Tuš",
|
"shower": "Tuš",
|
||||||
"shelter": "Sklonište",
|
"shelter": "Sklonište",
|
||||||
"cemetery": "Groblje",
|
"cemetery": "Cemetery",
|
||||||
"motorized": "Automobili i motocikli",
|
"motorized": "Automobili i motocikli",
|
||||||
"fuel-station": "Benzinska stanica",
|
"fuel-station": "Benzinska stanica",
|
||||||
"parking": "Parking",
|
"parking": "Parking",
|
||||||
@@ -495,7 +494,7 @@
|
|||||||
"email": "E-mail adresa",
|
"email": "E-mail adresa",
|
||||||
"contribute": "Doprinesi",
|
"contribute": "Doprinesi",
|
||||||
"supported_by": "Podržan od strane",
|
"supported_by": "Podržan od strane",
|
||||||
"features": "Karakteristike",
|
"features": "Features",
|
||||||
"route_planning": "Planiranje rute",
|
"route_planning": "Planiranje rute",
|
||||||
"route_planning_description": "Intuitivan interfejs za kreiranje itinerera prilagođenih svakom sportu, na osnovu OpenStreetMap podataka.",
|
"route_planning_description": "Intuitivan interfejs za kreiranje itinerera prilagođenih svakom sportu, na osnovu OpenStreetMap podataka.",
|
||||||
"file_processing": "Napredno procesiranje datoteke",
|
"file_processing": "Napredno procesiranje datoteke",
|
||||||
@@ -504,15 +503,15 @@
|
|||||||
"maps_description": "Velika kolekcija osnovnih mapa, slojeva i tačaka interesovanja koje će vam pomoći da napravite sledeću avanturu na otvorenom ili da vizuelizujete svoje najnovije dostignuće.",
|
"maps_description": "Velika kolekcija osnovnih mapa, slojeva i tačaka interesovanja koje će vam pomoći da napravite sledeću avanturu na otvorenom ili da vizuelizujete svoje najnovije dostignuće.",
|
||||||
"data_visualization": "Vizualizacija podataka",
|
"data_visualization": "Vizualizacija podataka",
|
||||||
"data_visualization_description": "Interaktivni profil nadmorske visine sa detaljnom statistikom za analizu zabeleženih aktivnosti i budućih ciljeva.",
|
"data_visualization_description": "Interaktivni profil nadmorske visine sa detaljnom statistikom za analizu zabeleženih aktivnosti i budućih ciljeva.",
|
||||||
"philosophy": "Filozofija",
|
"philosophy": "Philosophy",
|
||||||
"foss": "Besplatno, bez oglasa i otvorenog koda",
|
"foss": "Free, ad-free and open source",
|
||||||
"foss_description": "Veb lokacija je besplatna za korišćenje, bez reklama, a izvorni kod je javno dostupan na GitHabu.",
|
"foss_description": "The website is free to use, without ads, and the source code is publicly available on GitHub.",
|
||||||
"privacy": "Zaštita privatnosti",
|
"privacy": "Privacy-friendly",
|
||||||
"privacy_description": "Vaše GPX datoteke nikada ne napuštaju vaš pregledač. Nema praćenja, nema prikupljanja podataka.",
|
"privacy_description": "Your GPX files never leave your browser. No tracking, no data collection.",
|
||||||
"community": "Omogućeno zahvaljujući zajednici",
|
"community": "Made possible by the community",
|
||||||
"community_description": "gpx.studio ima neverovatnu zajednicu koja godinama pokriva svoje troškove donacijama, dok istovremeno oblikuje projekat kroz predloge funkcija, izveštaje o greškama i prevode na mnoge jezike.",
|
"community_description": "gpx.studio has an amazing community that has covered its costs through donations for years, while shaping the project through feature suggestions, bug reports, and translations into many languages.",
|
||||||
"support_button": "Podržite gpx.studio na Open Collective-u",
|
"support_button": "Support gpx.studio on Open Collective",
|
||||||
"translate_button": "Pomozite u prevodu veb stranice na Crowdin-u"
|
"translate_button": "Help translate the website on Crowdin"
|
||||||
},
|
},
|
||||||
"docs": {
|
"docs": {
|
||||||
"translate": "Poboljšajte prevod na Crowdin-u",
|
"translate": "Poboljšajte prevod na Crowdin-u",
|
||||||
@@ -537,7 +536,7 @@
|
|||||||
},
|
},
|
||||||
"embedding": {
|
"embedding": {
|
||||||
"title": "Napravi svoju mapu",
|
"title": "Napravi svoju mapu",
|
||||||
"maptiler_key": "Ključ MapTiler-a (opciono, potreban samo za MapTiler mape)",
|
"maptiler_key": "MapTiler key (optional, only required for MapTiler maps)",
|
||||||
"file_urls": "URL-ovi datoteka (razdvojeni zarezima)",
|
"file_urls": "URL-ovi datoteka (razdvojeni zarezima)",
|
||||||
"drive_ids": "Id datoteke sa Google diska (razdvojeni zarezima)",
|
"drive_ids": "Id datoteke sa Google diska (razdvojeni zarezima)",
|
||||||
"basemap": "Osnovna mapa",
|
"basemap": "Osnovna mapa",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Växla till föregående baskarta",
|
"switch_basemap": "Växla till föregående baskarta",
|
||||||
"toggle_overlays": "Växla överlagring",
|
"toggle_overlays": "Växla överlagring",
|
||||||
"toggle_3d": "Växla 3D",
|
"toggle_3d": "Växla 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Inställningar",
|
"settings": "Inställningar",
|
||||||
"distance_units": "Enhet för distans",
|
"distance_units": "Enhet för distans",
|
||||||
"metric": "Metrisk",
|
"metric": "Metrisk",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Switch to previous basemap",
|
"switch_basemap": "Switch to previous basemap",
|
||||||
"toggle_overlays": "Toggle overlays",
|
"toggle_overlays": "Toggle overlays",
|
||||||
"toggle_3d": "Toggle 3D",
|
"toggle_3d": "Toggle 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
"distance_units": "Distance units",
|
"distance_units": "Distance units",
|
||||||
"metric": "Metric",
|
"metric": "Metric",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Önceki temel haritaya geç",
|
"switch_basemap": "Önceki temel haritaya geç",
|
||||||
"toggle_overlays": "Katmanları Aç/Kapa",
|
"toggle_overlays": "Katmanları Aç/Kapa",
|
||||||
"toggle_3d": "3B'yi aç/kapat",
|
"toggle_3d": "3B'yi aç/kapat",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Ayarlar",
|
"settings": "Ayarlar",
|
||||||
"distance_units": "Mesafe birimleri",
|
"distance_units": "Mesafe birimleri",
|
||||||
"metric": "Metrik",
|
"metric": "Metrik",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Перехід до попередньої базової карти",
|
"switch_basemap": "Перехід до попередньої базової карти",
|
||||||
"toggle_overlays": "Перемикання накладок",
|
"toggle_overlays": "Перемикання накладок",
|
||||||
"toggle_3d": "Перемикнути 3D",
|
"toggle_3d": "Перемикнути 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Налаштування",
|
"settings": "Налаштування",
|
||||||
"distance_units": "Одиниці виміру відстані",
|
"distance_units": "Одиниці виміру відстані",
|
||||||
"metric": "Метричні",
|
"metric": "Метричні",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Quay lại bản đồ trước đó",
|
"switch_basemap": "Quay lại bản đồ trước đó",
|
||||||
"toggle_overlays": "Thay đổi lớp phủ",
|
"toggle_overlays": "Thay đổi lớp phủ",
|
||||||
"toggle_3d": "Chuyển đổi 3D",
|
"toggle_3d": "Chuyển đổi 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Cài đặt",
|
"settings": "Cài đặt",
|
||||||
"distance_units": "Đơn vị khoảng cách",
|
"distance_units": "Đơn vị khoảng cách",
|
||||||
"metric": "Hệ mét",
|
"metric": "Hệ mét",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "Switch to previous basemap",
|
"switch_basemap": "Switch to previous basemap",
|
||||||
"toggle_overlays": "Toggle overlays",
|
"toggle_overlays": "Toggle overlays",
|
||||||
"toggle_3d": "Toggle 3D",
|
"toggle_3d": "Toggle 3D",
|
||||||
"fullscreen": "Full screen",
|
|
||||||
"settings": "Settings",
|
"settings": "Settings",
|
||||||
"distance_units": "Distance units",
|
"distance_units": "Distance units",
|
||||||
"metric": "Metric",
|
"metric": "Metric",
|
||||||
|
|||||||
@@ -36,7 +36,6 @@
|
|||||||
"switch_basemap": "切换到上一个底图",
|
"switch_basemap": "切换到上一个底图",
|
||||||
"toggle_overlays": "切换叠加层",
|
"toggle_overlays": "切换叠加层",
|
||||||
"toggle_3d": "三维视图",
|
"toggle_3d": "三维视图",
|
||||||
"fullscreen": "全屏",
|
|
||||||
"settings": "设置",
|
"settings": "设置",
|
||||||
"distance_units": "距离单位",
|
"distance_units": "距离单位",
|
||||||
"metric": "公制",
|
"metric": "公制",
|
||||||
|
|||||||
Reference in New Issue
Block a user