mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-04 10:52:12 +00:00
25 lines
807 B
Plaintext
25 lines
807 B
Plaintext
---
|
||
title: 请求海拔数据
|
||
---
|
||
|
||
<script>
|
||
import { MountainSnow } from 'lucide-svelte';
|
||
import Elevation from '$lib/components/toolbar/tools/Elevation.svelte';
|
||
import DocsNote from '$lib/components/docs/DocsNote.svelte';
|
||
</script>
|
||
|
||
# <MountainSnow size="24" class="inline-block" style="margin-bottom: 5px" /> { title }
|
||
|
||
该工具支持对轨迹和 [兴趣点](../gpx) 的海拔数据进行添加或修改。
|
||
|
||
<div class="flex flex-row justify-center">
|
||
<Elevation class="text-foreground p-3 border rounded-md shadow-lg" />
|
||
</div>
|
||
|
||
<DocsNote>
|
||
|
||
海拔数据来自 <a href="https://mapbox.com" target="_blank">Mapbox</a> ,
|
||
查阅 <a href="https://docs.mapbox.com/data/tilesets/reference/mapbox-terrain-dem-v1/#elevation-data" target="_blank">官方文档</a> 以了解更多。
|
||
|
||
</DocsNote>
|